//Simple jquery script for a dropdown.
$(document).ready(function(){
	$("#navPrimary li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
		function(){ $("ul", this).fadeOut("fast"); } 
	);
});

$(document).ready(function(){

	$(".magazines a").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "150"}, "fast");
	}, function() {
		$(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;
//	
//	});
//});
