$(document).ready(function(){
$.get("background.php",function(data){
if(data=="video"){
var so = new SWFObject("preview.swf", "fullScreen", "100%", "100%", "8", "#000000");
so.addParam("scale", "noscale");
so.addParam('salign', 'lt'); 
so.addParam("allowFullScreen","true");
so.addParam('wmode', 'transparent'); 
so.write("flashcontent");
}else{
 var so = new SWFObject("preview.swf", "fullScreen", "100%", "100%", "8", "#000000");  /*preview_img.swf*/
so.addParam("scale", "noscale");
so.addParam('salign', 'lt'); 
so.addParam("allowFullScreen","true");
so.addParam('wmode', 'transparent'); 
so.write("flashcontent"); 
}
});	
/*var nv = new SWFObject("white_arrow.swf","33", "29", "24","#000000");
nv.addParam("allowFullScreen","false"); 
nv.addParam('wmode', 'transparent');
nv.write("navigation");*/
			
$("#board").css('visibility','hidden');
/*
$("#board").hide();
$("#navigation").toggle(
function(){
$("#board").show();
$("#board").animate({marginLeft: '0'},300);
},
function(){
$("#board").animate({marginLeft: '100%'},300,function() {$("#board").hide();});
});
});*/

$("#navigation").toggle(
function(){
			$("#board").animate({marginLeft: '0', duration: 1000 });
			//$("#board").css('visibility','visible');
			$("#main_menu_2").fadeIn();
			$("#main_menu").fadeIn();
			
		},
function(){
			$("#board").animate({marginLeft: '100%', duration: 1000 });
			//$("#board").css('visibility','hidden'); $("#main_menu").fadeOut();
			$("#main_menu_2").fadeOut();
		});
});



