$(document).ready(function(){
		


//Tabs


//Slider
 
 


$(".toggle-block, .toggle-block2").hide(); 

$("p.toggle, p.toggle2").click(function(){
	$(this).toggleClass("active").next().slideToggle(500);
	return false; 
});


//Images opacity
$("img.shadow").hover(function () {
									 
	$(this).stop().animate({
	opacity: 0.8
	}, "slow");
	},
	
	function () {
	$(this).stop().animate({
	opacity: 1.0
	}, "slow");
});





//Testimonials
$(".t-content li").quovolver();


});


	




