
jQuery(document).ready(function(){

	jQuery('.sitetop .nav ul li').mouseenter( function() {
		jQuery(this).find("ul:first").fadeIn(100);
	})

	jQuery('.sitetop .nav ul li').mouseleave( function() {
		jQuery(this).find("ul").fadeOut(300);
	})

	jQuery(".rightbox").not(".rightbox:first").find(".rightbox_content").hide();
	jQuery(".rightbox").not(".rightbox:first").addClass("closed");
	jQuery(".rightbox:first").find(".rightbox_top").addClass("first");


	jQuery('.rightbox.closed').click( function() {
		jQuery(this).attr("class","rightbox");
		jQuery(this).find(".rightbox_content").slideDown();
	})


	jQuery(".rightbox").click(function(){

		if (jQuery(this).hasClass("closed")){
			jQuery(this).find(".rightbox_content").slideDown();
			jQuery(this).removeClass("closed");
		}
			jQuery(".rightbox").not(this).find(".rightbox_content").slideUp();
			jQuery(".rightbox").not(this).addClass("closed");

	});

})
