/*############### HOVER ON LOGO##############################################################*/

$(document).ready(function(){
	$("#footer h1 a").hover(function () {
      $(this).parent().css("background-position","bottom");
    },
	function () {
        $(this).parent().css("background-position","top");
      }
	);

});

/*############### PLACE IMAGE-HOLDER AROUND the thumbnails for each category  body.home .featured_display img,  ###############################*/

$(document).ready(function(){
   $("body.photogallery .post_img img, body.photogallery_cat .post_img img").before("<span></span>");
});

$(document).ready(function(){
	$('ul.featured_display').innerfade({ 
		speed: 'slow', 
		timeout: 7000, 
		type: 'sequence', 
		containerheight: '650px' 
	});
});