$().ready(function(){	
		//this is home
		$("#news-and-events-popup").mouseenter(
				
			function(){ 
			   	if ($('#news-and-events-popup').height() < 75){
			  	$("#news-and-events-popup").animate({ height: "235px"}, 500);
			  	$("#news-and-events-popup h2 span").css({ backgroundPosition: "-17px 0"}, 500);
			  	}
			}

		);
		$("#news-and-events-popup").mouseleave(		
				function(){ 
				
			  	
				$("#news-and-events-popup").animate({ height: "74px"}, 500);
				$("#news-and-events-popup h2 span").css({ backgroundPosition: "0px 0"}, 500);
				}
		);

		$("#rosette").mouseenter(

			   	function(){ 
			  	$("#awards-popup").animate({ height: "205px"}, 500).delay(5000).animate({ height: "0px"}, 500);
			  	$("#awards h2 span").css({ backgroundPosition: "-17px 0"}, 500);
			  	}

		);
		$("#awards-popup").mouseleave(		
				function(){ 

				$("#awards-popup").animate({ height: "0px"}, 500);
				$("#awards h2 span").css({ backgroundPosition: "0px 0"}, 500);
				}
		);
});	
