

jQuery(function() {
	jQuery('.nbutt').css('opacity', 0.6);
	//jQuery('#clients').css('opacity', 0.6);
	//jQuery('#social a').css('opacity', 0.4);

	jQuery('.nbutt').hover(function() {
		jQuery(this).fadeTo("fast", 1);
	});
	
	jQuery('.nbutt').mouseleave(function() {
		jQuery(this).fadeTo("fast", 0.6);
	});
	
	jQuery('.custom .teasers_box a.post_image_link').hover(function() {
		jQuery(this).fadeTo("fast", 0.5);
	});	

	jQuery('.custom .teasers_box a.post_image_link').mouseleave(function() {
		jQuery(this).fadeTo("fast", 1);
	});	
	
		jQuery('.readmore').mouseleave(function() {
		jQuery(this).fadeTo("fast", 0.4);
	});




		

	 
});

