//swfobject.embedSWF("/flash/slideshow.swf", "slideshow", "680", "440", "9.0.0","/flash/expressinstall.swf","","","");
swfobject.embedSWF("/flash/slideshow-about.swf", "slideshow-about", "680", "440", "9.0.0","/flash/expressinstall.swf","",{wmode:"transparent"},"");


$(function(){

	$('input.login,input.formSubmit').wrap('<p class="clearfix"/>');
 
  

	// ----- Menu animation -----
	$('#nav li').each(function(e) {
		
		$el = $(this);
		var $span = $el.find('span');
		
		$el.bind('mouseover', function(e) {
			$span.hoverFlow(e.type, { width: '237px' }, { duration: 600 });
		});
	  
		$el.bind('mouseout', function(e) {
			$span.hoverFlow(e.type, { width: '0px' }, { duration: 600 });
		});
	
	}); //each
	
	$('#nav span').click(function() {
		window.location = $(this).siblings('a').attr('href'); // <span> acts as <a>, since it sits on top of <a>
	});

	
	
	
	// ----- Homepage Slideshow -------
	$('#slideshow').css("display","block").css("cursor","pointer").innerfade({ speed: 750, timeout: 5000, containerheight: '440px' });
	$('#slideshow').click(function(){
		window.location = "/BBQ-Covers/";
	});


});