﻿$(document).ready(function (){		
	// Flash Player detection ---------------------------------------------------------------------------
	if (swfobject.getFlashPlayerVersion().major > 0) { 	// if we've detected an acceptable version	
		$("#isFlash").css("display","block");
		$("#isNoFlash").css("display","none");
		
		$('#language a').click(function() {
			setCookie("TagHeuer", $(this).attr("href"));
		});
	
	} else {  					// flash is too old or we can't detect the plugin
		$("#isFlash").css("display","none");
		$("#isNoFlash").css("display","block");
		document.location.href =   "/html.php/int-en/home";
		
	}
	
	$('#language').slideDown(1600);
});

