$(document).ready(function(){ 
	fadeItem();
	if($('#fmenu').length > 0){
		$('#fmenu').flash(
			{
				// test_flashvars.swf is the flash document
				
				swf: 'menu.swf',
				height: 317,
				width: 284,
				wmode: 'transparent'
	
	
				// these arguments will be passed into the flash document
				
			}
		);
	}

}); 

function fadeItem() {
    $('#tagline li:hidden:first').delay(800).fadeIn("slow",fadeItem);
}
