/* Sound */
var sound = "on";
if (jQuery.cookie('soundvolume')) {
	sound = jQuery.cookie('soundvolume');
}
function setSound(parm) {
	jQuery.cookie('soundvolume',parm,{ expires: 1, path: '/'});
}

/* SWF Embed */
swfobject.embedSWF(
	"swf/notice.swf?20100916", "flashcontent", "100%", "100%", "8", null,
	{ htmlSound: sound },
	{ bgcolor: "#000000", allowScriptAccess: "sameDomain" },
	{ id: "flashcontent", name: "flashcontent" }
);
swfobject.addLoadEvent(function() {
	var so = document.getElementById("flashcontent");
	if(so) {
		var forcesize = new SWFForceSize(so, 1000, 620);
		forcesize.onLoadDiv();
	}
});
