var alertTimerId = 0;
var status='closed';

function startEar(){
	$('#flashDIVlink').hover(function(){
						if(status=='closed'){
							$('#ear').css("width","465px");
							$('#flashDIV').css("width","400px");
							$('#flashDIV').css("height","300px");
							swfobject.embedSWF("flash/largePage.swf", "flash", "465", "364", "9.0.0",{wmode:"transparent"},{wmode:"transparent"},{wmode:"transparent"});
							status='open';
						}
					},
						function(){
					  		if(status=='open'){
								status='waiting';
							alertTimerId = setTimeout ( "flashClose()", 1500 );
							}
					});	
}

function flashClose(){
	$('#flashDIV').css("width","150px");
	$('#flashDIV').css("height","150px");
	$('#ear').css("width","150px");
	swfobject.embedSWF("flash/smallPage.swf", "flash", "150", "150", "9.0.0",{wmode:"transparent"},{wmode:"transparent"},{wmode:"transparent"});
	status='closed';
}
