$(document).ready(function(){
	$(" .thumbs, .main_btn, .btn_more,  .btn_buy ").fadeTo("slow", .7); 
	
	$("  .thumbs, .main_btn, .btn_more, .btn_buy").hover(function(){
		$(this).stop().fadeTo("fast", 1); 
	},function(){
   		$(this).stop().fadeTo("normal", .7); 
	});

$(".video a, .mainvideo a").fancybox({	
		'zoomSpeedIn':	250, 
				'zoomSpeedOut':	250, 
				'overlayShow':	true
				});

$('#testimonials, .testimonials').cycle({ 
    fx:    'fade', 
     timeout:  10000 ,
	speed:  2500
 });
});



