/* Image hover
------------------------------------------------------------------------------------*/

jQuery('.post-thumb a img, .tab-thumb a img').hover( function () {
	jQuery(this).stop().animate({opacity : 0.7}, 300);
	}, function () {
	jQuery(this).stop().animate({opacity : 1}, 300);
}); 



/* Page Fade
------------------------------------------------------------------------------------*/
jQuery(document).ready(function(){	
	 jQuery('.main-col, .post').fadeIn(500);
});



/* Placement Meta Fade
------------------------------------------------------------------------------------*/
jQuery(document).ready(function(){
	
	jQuery(".toggle_container").hide();

	jQuery("h3.trigger").click(function(){
		jQuery(this).toggleClass("active").next().slideToggle("slow");
		jQuery('.date').fadeIn(1000);
		return false;
	});

});


/* Back to Top
------------------------------------------------------------------------------------*/

	var topLink = jQuery('#back-to-top');

	function tz_backToTop(topLink) {
		
		if(jQuery(window).scrollTop() > 300) {
			topLink.fadeIn(400);
		} else {
			topLink.fadeOut(400);
		}
	}
	
	jQuery(window).scroll( function() {
		tz_backToTop(topLink);
	});
	
	topLink.find('a').click( function() {
		jQuery('html, body').stop().animate({scrollTop:0}, 500);
		return false;
	});
