$(document).ready(function() {

	//entry hover effects
	$('.deets').css({marginTop:"-160px"});
	$('.entry').hover( 
	function () { 
		$('.img',this).stop().animate({marginTop:"160px",opacity:"0"});
		$('.deets',this).stop().animate({marginTop:"0"});
	}, function () { 
		$('.img',this).stop().animate({marginTop:"0",opacity:"1"});
		$('.deets',this).stop().animate({marginTop:"-160px"});
	});

	//removes title attribute for image hovers
	$(".img img").removeAttr("title");
	
	//opens external links in new window
	$("a[href*='http://']:not([href*='"+location.hostname+"'])").attr("target","_blank");	
	
	//hide welcome window
	$('.hidewelcome').click(function() { $('#welcome').animate({opacity:"0"}).slideUp(); });
	
});	