$(function(){
	$('#slides').slides({
		preload: true,
		preloadImage: '/Static/Images/Default/loading.gif',
		effect: 'slide, fade',
		crossfade: true,
		slideSpeed: 350,
		fadeSpeed: 500,
		play:5000,
		generatePagination: false
	});
	$('header nav ul').superfish({
		autoArrows:false
	});
	$('header nav ul ul').each(function(){
		
		$(this).css("width", $(this).parent().width() + "px");
	});
	
	
	
	
	$("input.ghost").click(function(){
		if($(this).val() == $(this).data("ghostword")) $(this).val("");
	});
	$("input.ghost").focusout(function(){
		if($(this).val() == "") $(this).val($(this).data("ghostword"));							
	});
	$("input.ghost").trigger("focusout");
});
