// JavaScript Document
 $(document).ready(function() {
	if("#featureCarousel")
	{
		$("#featureCarousel").featureCarousel({
			// include options like this:
			// (use quotes only for string values, and no trailing comma after last option)
			// option: value,
			// option: value
			autoPlay: 5000,
			topPadding:0,
			sidePadding:0,
			smallFeatureOffset:60,
			smallFeatureWidth:0.7,
			smallFeatureHeight:0.7
		});
		
	}
	
	$('.menu_wrap li').mouseover(function(){
		$(this).next().show(100);
	});
	
	//$(".fade").crossfade();
});
