$(document).ready(function() { 
	$('.closebutton').click(function() {$(this).parent().fadeOut(400); });
	$('.closebutton').mouseover(function() {$(this).css('background','url(/i/closebutton_hover.gif) no-repeat')});
	$('.closebutton').mouseout(function() {$(this).css('background','url(/i/closebutton.gif) no-repeat')});
	
});

function mytoggle(id) {
	var tmp = $('#'+id);
	if (tmp.is(':visible')) tmp.fadeOut(400); else tmp.fadeIn(400);
}

