$(document).ready(function() {
	
	$('#slideshow').cycle({ 
	    fx:     'fade',
	 	sync:   'true',
	    random: 'true',
	    speed:   500, 
	    timeout: 5000, 
	    next:   '#next', 
		prev:   '#prev', 
	    pause:   1 
	});
	
	
	$('.arrow-btn').hide();
	
	$('#banners').hover(
	function() { hover_intent = setTimeout( function(){ $('.arrow-btn').fadeIn(); } , 100 ); },
	function() { try{clearTimeout(hover_intent);}catch(e){}; $('.arrow-btn').fadeOut(); });
	
	Cufon.replace('.heading');
	
	$('.trans').css({opacity:0.2})
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
});