$(document).ready(function(){

	$('#slider-tabs li a').featureList({
		output : '#slider-img li',
		start_item : 0
	});
	
	$("a.fancy").fancybox({
		'titleShow' : false
	});
	
	$("a.video").fancybox({
		'titleShow' : false,
		'type'	: 'iframe',
		'autoDimensions' :  true
	});
	
	$("#header > ul li").hover(function(){
		$("ul", this).fadeIn(250);},
		function(){$("ul", this).fadeOut(250);}
	);
});
