$(function(){
	var swf, width, height;
	swf = "swf/top.swf";
	width = 502;
	height = 358;
	var swfObj = " "
	swfObj+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab'"
	swfObj+="        width   = " + width
	swfObj+="        height  = " + height + ">"
	swfObj+="<param  name    = movie value=" + swf + ">"
	swfObj+="<param  name    = quality value=high>"
	swfObj+="<param  name    = menu    value=false>"
	swfObj+="<embed  src     = " + swf + " "
	swfObj+="        quality = high  "
	swfObj+="        menu    = no "
	swfObj+="        width   = "+ width
	swfObj+="        height  = " + height
	swfObj+="        type    = 'application/x-shockwave-flash' "
	swfObj+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
	swfObj+="</embed>"
	swfObj+="</object>"
	
	$("h2").html("").append(swfObj).css("border","solid #DFDFDF 4px");
});
