//Simple jquery script for a dropdown.
jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("#navPrimary li").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function(){ jQuery("ul", this).fadeOut("fast"); } 
	);
});

//Script for a rouded corners.
jQuery(document).ready(
	function(){
	/*jQuery("#header").corner("round 10px top");*/
	jQuery(".footer").corner("round 10px bottom");
	}
);

jQuery(document).ready(function(){

	jQuery(".magazines a").hover(function() {
		jQuery(this).next("em").animate({opacity: "show", top: "150"}, "fast");
	}, function() {
		jQuery(this).next("em").animate({opacity: "hide", top: "160"}, "fast");
	});


});


//$(document).ready(function(){
//	$("ul#navPrimary li ul").siblings("a").hover(function(){
//		var thisUL = $(this).siblings("ul");
//		var parentLI = $(this).parent();
//		thisUL.width(thisUL.width()); //This line allows for proper scrolling in IE7
//		thisUL.slideDown(100);
//		return false;
//	},function(){
//		var thisUL = $(this).siblings("ul");
//		var parentLI = $(this).parent();
//		thisUL.width(thisUL.width()); //This line allows for proper scrolling in IE7
//		thisUL.slideUp(100);
//		return false;
//	
//	});
//});
