/*------------------------------*/


// Id of the object to replace content
// 内容を書き換えるオブジェクトのID
var idToReplaceGallery = 'GALLERY';

// HTML tag to replace
// 置換後のHTMLタグ
var replacementGallery = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="410" height="360"><param name="movie" value="/flash/gallery.swf" /><param name="quality" value="high" /><embed src="/flash/gallery.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="410" height="360"></embed></object>';
/*------------------------------*/
var replaceFlashGallery = function() {
	var flashReplaced = SW_DetectReplace(requiredMajorVersion, requiredMinorVersion, requiredRevision, idToReplaceGallery, replacementGallery);
};
if(window.addEventListener) {
    window.addEventListener('load', replaceFlashGallery, false);
} else if(window.attachEvent) {
    window.attachEvent('onload', replaceFlashGallery);
}
/*------------------------------*/

