﻿$(function() {
	var strCookie = $.cookie('cookie_flash');
	var movieDiscription;
	var movieStatus = "on" ;
	
	var strToday = new Date();
	strTodayDate = strToday.getDate();
	if ( strCookie == strTodayDate ){
	 movieStatus = "on" ;	
	} else {
	 movieStatus = "off" ;
	};
	movieDiscription = "<script type='text/javascript'> var flashvars = {openingStatus: '" + movieStatus +"',xmlPath:'/topasset/xml/topSetting.xml',videoPath:'/topasset/flv/ynu10Fb.flv'};var params={wmode:'transparent',allowScriptAccess:'always'};var attributes = {id: 'topFlash'};swfobject.embedSWF('/topasset/swf/ynutop.swf','topFlash', '970', '305', '8.0.0', '/common/swf/expressInstall.swf', flashvars, params, attributes);</script>";
	if (movieStatus != null){
		playMovie();
	}
	
	function playMovie(){
		strCookie = strToday.getDate();
		$.cookie('cookie_flash', strCookie, { path: '/', expires: 7 });
		
		$("#writeFlash").html(movieDiscription);
		return false;
	}
	
});

