jQuery(window).load(function(){

  // The magic sliding panels - from the 'gallery' WordPress template
  
	jQuery('.entry-content div span.slide-title').css({
		opacity : '0.0'
	}).parent('div').append('<span class="cover-up"></span>');
	jQuery('.entry-content').mouseover(function(e){
      jQuery(this).find('img.frontpg').stop().animate({
	  	marginTop : '-80px'
	  }, 100).parent('div').find('span.slide-title').stop().fadeTo("slow",1.0);
	});
	jQuery('.entry-content').mouseout(function(e){
      jQuery(this).find('img.frontpg').stop().animate({
	  	marginTop : '0'
	  }, 100).parent('div').find('span.slide-title').stop().fadeTo("fast",0.0);
	});
  
});
