$(document).ready(function(){
  /* 
  this section is for imgBox 
  */
	$('.post-title').fadeOut(0);
	
	$('.wp-post-image').attr("title", "");

    $(".zoom").imgbox({
      'zoomOpacity' : true,
      'alignment' : 'false',
      'speedIn' : 300, 
      'speedOut' : 200,
      'padding' : 5,

    }); 

    
	$(".post-thumbnail").hover(
		function(){
			$(this).find('.post-title').fadeIn(150);
		},
		function(){
			$(this).find('.post-title').fadeOut(1000);
			// $(".post-title").fadeIn(500);
		}
	);


  	
});//end document ready