// JavaScript Document

$(document).ready(function(){

			$(".dropdown").each(function(){
					
					$(this).hide();
				
				});	
	$(".dropit").hover(function(){
			
								
			var hoverText = $(this).find(".dropdown");
			
			$(hoverText).show();
			
		},
		function(){
			$(this).find(".dropdown").hide();
		});

	$(".shortstories").hover(function(){
			$(this).css({'background-color' : '#f1f1f1'});
			$(this).css({'cursor' : 'pointer'});
			$(this).css({'background-image' : 'none'});
		},
		function(){
			$(this).css({'background-color' : '#fff'});
			$(this).css({'background' : 'url(images/shortstorybg.jpg) no-repeat left top'});
		});
		
	$(".shortstories").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});


	});