/******************************************************************************
 This is where the magic happens. This should really be the only part of this
 script you need to modify. Just add the necessary SI_replaceElement() calls 
 and make sure this sucker is called onload.
 ******************************************************************************/
function SI_flashReplacement() {
	// Replace all `<h1>` tags inside `<div id="primary-content">`
	//SI_replaceElement('div#parentArea',flashFeature,190,130,'');
    try{
	if(splashFlash){
	    //SI_replaceElement('div#flashDiv',splashFlash,780,227,'');	
	    SI_replaceElement('div#flashDiv',splashFlash,750,218,'',false);	
	}
    }catch(err){
	//alert(err);
	//do nothing
    }

    try{
	if(logoFlash){
	    SI_replaceElement('span#logoSpan',logoFlash,302,134,'',false);	
	}
    }catch(err){
	//alert(err);
	//do nothing
    }
	// Another Sample:
	// Replace all occurances of `<h3 class="author">` inside `<div class="comment">`
	// Also pass the additional variable `type` a value of `2` to Flash
	// SI_replaceElement('div.comment>h3.author','txt3.swf',612,35,'type=2');
	
	SI_forceRedraw();
	}
