var swf_removed = false;

$(document).ready(function(){
   		$("#flash_border").css({'margin-top' : '-790px'});
	
		
		$("#closeFlash").click(function(){
	     	$("#flash_border").animate({marginTop: "-790px"}, 1000, "easeInSine", removeFlash);
		});
 
		$(".displayFlash").click(function(){		
	    	$("#flash_border").animate({marginTop: "0"}, 1000, "easeOutSine");  	
			var flashvars = {};
			var params = {};
			var attributes = {id:'flash_content'};
			if(swf_removed) {
				$("#flash_border").append("<div id='flash_content'></div>");
				attributes = { data:"Wilder.swf", width:"1024", height:"768" };
				swfobject.createSWF(attributes, params, 'flash_content');
			} else {
				swfobject.embedSWF("Wilder.swf", "flash", "1004", "748", "9.0.0", false, flashvars, params, attributes);
			}
		});
});

function removeFlash() {
	swfobject.removeSWF('flash_content');
	swf_removed = true;
}
