Cufon.replace('#Navigation li',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('#SubCol h3',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('#SubCol p',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('#SubCol label',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('h2',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('h3',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('h4',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('p',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('#Footer h5',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('#SliderNav',{hover: true, fontFamily: 'Futura Std'});
Cufon.replace('#SliderNavLabel',{hover: true, fontFamily: 'Futura Std'});

$(document).ready(function() {
	$(".thumb").mouseenter(function(){
		$(this).children('.info').fadeIn();
	}).mouseleave(function(){
		$(this).children('.info').fadeOut();
	});
	
	$(".reeloverlay").click(function(){
		$(this).hide();
		$(".reelcontent").show();
	});
	
	$('#ThumbsSlideshow').cycle({ 
	    fx:     'scrollHorz', 
	    speed:  'slow', 
	    prev:   '#csprev', 
	    next:   '#csnext', 
	    timeout: 0, 
	    pager:  '#SliderNav',
		pagerAnchorBuilder: function(idx, slide) { 
		        return '<a href="#"></a>'; 
		    }
    });
    $('#goto1').click(function() { 
        $('#ThumbsSlideshow').cycle(0); 
        return false; 
    });
    $('#goto2').click(function() { 
        $('#ThumbsSlideshow').cycle(1); 
        return false; 
    });

	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) {
	    $(pager).find('li').removeClass('activeLI')
	        .filter('li:eq('+currSlideIndex+')').addClass('activeLI');
	};
	
	$('.clips').cycle({ 
	    fx:     'scrollHorz', 
	    speed:  'slow', 
	    prev:   '#csprev', 
	    next:   '#csnext', 
	    timeout: 0, 
	    pager:  '#SliderNav',
		pagerAnchorBuilder: function(idx, slide) { 
		        return '<a href="#"></a>'; 
		    }
    });

	$('.clientreel_arrowleft').mouseover(function() { 
		$(this).fadeOut();
		$('.clientreel_arrowright').fadeIn();
        $('.clips').cycle(0); 
        return false; 
    });
    $('.clientreel_arrowright').mouseover(function() { 
		$(this).fadeOut();
		$('.clientreel_arrowleft').fadeIn();
        $('.clips').cycle(1); 
        return false; 
    });
	


});
