var params = {
		 menu: "false",
		 wmode: "opaque",
		 bgcolor: "#ededea",
		allowScriptAccess: "always",
		base: "swf",
		allowFullScreen:"true" 	
};
var attributes = {
		id: "myId",
		name: "myId"
};

//var flashvars = {log:"true", title: "Dump", controlBar: "true", scale:"exactFit", embed:"true", videoFile: "../flv/mcd_starsofamerica.flv", enableFullScreen:"false"};
$(document).ready(function () {
	$('.videolink').click(function () {
		  if ($(".videowrapper").is(":hidden")) {
			$(".videowrapper").slideDown("slow", function(){
				swfobject.embedSWF("swf/videoplayer.swf", "video", "100%", "100%", "9.0.28", "", flashvars, params, attributes);
			});
		  } else {
			$(".videowrapper").slideUp("slow", function(){
				jQuery('#myId').replaceWith('<div class="video" id="video"></div>');
			});
		  }
		return false;
	});
	
	$('.thumb').click( function() {
		jQuery('.big').attr('src', jQuery(this).attr('href'));
		return false;
	});
});
