$(document).ready(function() {
	
	<!---for thumb rollover--->
$('#portfolio-item a').hover(function() {
		$(this).find('.rollover').stop('true','true').animate({ top: '0px'}, 200);
	}, function(){
		$(this).find('.rollover').stop('true','true').animate({ top: '157px'}, 200);
	});

<!---for blog sub img rollover--->
$('.sub-blog-img').hover(function() {
		$(this).find('.rollover').stop('true','true').fadeTo("normal",0.50);
		$(this).find('.sub-post-info').stop('true','true').animate({ top: '121px'}, 200);
	}, function(){
		$(this).find('.rollover').stop('true','true').fadeTo("normal",0);
		$(this).find('.sub-post-info').stop('true','true').animate({ top: '242px'}, 200);
	});

<!---for blog main img rollover--->
$('.main-blog-img').hover(function() {
		$(this).find('.rollover').stop('true','true').fadeTo("normal",0.50);
		$(this).find('.main-post-info').stop('true','true').animate({ top: '121px'}, 200);
	}, function(){
		$(this).find('.rollover').stop('true','true').fadeTo("normal",0);
		$(this).find('.main-post-info').stop('true','true').animate({ top: '242px'}, 200);
	});
});
