$(function() {	$('a.flash').click(function() {		var link = $(this).attr('name');				$('#FlashResponse').fadeOut('fast', function() {			$('#FlashResponse').remove();			$('<div id="FlashResponse"><object width="385" height="191"><param name="movie" value="'+link+'.swf"><embed src="'+link+'.swf" width="385" height="191"></embed></object></div>').appendTo('.flashLeft').hide().fadeIn('fast');		});								//var html2 = $('.flashLeft').html();		//alert(html2);		return false;			});		$('a.flash').live("mouseover",function() {				var link = $(this).attr('name');				if (link == 'link1') {		var textinner = 'TAKE OUR SURVEY - Click the big blue button to see for yourself how our system works and how it can benefit your company';		}		else if (link == 'link2') {		var textinner = 'EXAMPLE SITES - See how our system can be personalised and made to suit any brand';		}		else if (link == 'link3') {		var textinner = 'PRODUCTS - Anything you can print you can build in our online store, here are a few examples.';			}		else if (link == 'link4') {		var textinner = 'This is text4';		}				$('#text2').fadeOut('200', function() {			$('#text2').remove();			$('#text').append('<p id="text2">'+textinner+'</p>');			//$('#FlashResponse').remove();			//$('<div id="FlashResponse"><object width="385" height="191"><param name="movie" value="'+link+'.swf"><embed src="'+link+'.swf" width="385" height="191"></embed></object></div>').appendTo('.flashLeft').hide().fadeIn(200);		});			});});
