/* this prevents dom flickering, needs to be outside of dom.ready event: */
document.documentElement.className += 'js_active';
/*end dom flickering =) */

jQuery.noConflict();

jQuery(document).ready(function(){


jQuery(".btn_top,#btn_search,#wp-submit,.play,.btn_next,.btn_prev").hover(function(){
		jQuery(this).stop().animate({opacity:0.6},300);
		
		},function(){
		jQuery(this).stop().animate({opacity:1},500);
		});


	
});






