$(document).ready(function(){
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over subnav1 (photographic)
	$(".subnav1").mouseover(function(){
		$(this).children("ul").stop().animate({height:'300px'},{queue:false, duration:800})
	});
	
	//When mouse is removed from subnav1
	$(".subnav1").mouseout(function(){
		$(this).children("ul").stop().animate({height:'0px'},{queue:false, duration:800})
	});
		
	//When mouse rolls over subnav2 (books)
	$(".subnav2").mouseover(function(){
		$(this).children("ul").stop().animate({height:'100px'},{queue:false, duration:800})
	});
	
	//When mouse is removed from subnav2
	$(".subnav2").mouseout(function(){
		$(this).children("ul").stop().animate({height:'0px'},{queue:false, duration:800})
	});
	
	//When close button is clicked
	$("li.close a").click(function(){
		$(this).parent().parent().stop().animate({height:'0px'},{queue:false, duration:800});
		return false;
	});
	
	
});