$(document).ready(function(){
    check = flashVersion();
 if(check == 0)	{
				if(location.href == 'http://smart-media.ru/' || location.href == 'http://www.smart-media.ru/')
				
				{
				$('head').load('/assets/templates/smartmedia/noflash/index.html');
	            $('body').load('/assets/templates/smartmedia/noflash/index.html');
				}
				
				}
	$(window).trigger("resize");

});

$(window).bind("resize", function(){

	widthWin = $(window).width();
	heightWin = $(window).height();
	if (widthWin <= 1200 && widthWin > 999){
		$("#wrap_flash").css({width: "100%"});
		if (heightWin >= 850)
			$("#wrap_flash").css({height: "100%"});
		else
			$("#wrap_flash").css({height: "850px"});	
	}
	else
		if (widthWin <= 999){
			$("#wrap_flash").css({width: "999px"});
			if (heightWin >= 900)
				$("#wrap_flash").css({height: "100%"});
			else
				$("#wrap_flash").css({height: "900px"});			
		}
		else{
			$("#wrap_flash").css({width: "100%"});
			if (heightWin >= 790)
				$("#wrap_flash").css({height: "100%"});
			else
				$("#wrap_flash").css({height: "790px"});
		}
	
});
