$('html').addClass('hasjs');

$(document).ready(function() {
	//video player
	VideoJS.setup();
	
	//cycle
	$('#featuredproj').after('<div id="fpnav">').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 8000, 
    pager:  '#fpnav',
    pause: true,
    autostop: 3 
	});
	
	$('#credo').hover(function(){
		$(this).fadeTo(400,0);
	},function(){
		$(this).fadeTo(400,1);
	});
});
