//here's the sIfr
//code for the h1 tags
var carpenterICG = {  src: 'carpenterICG.swf' };
sIFR.activate(carpenterICG);
sIFR.replace(carpenterICG, {
  selector: 'h1', 
  wmode: 'transparent', 
  src: 'carpenterICG.swf', 
  css: [ '.sIFR-root {color:#003300;}'  ]
});

//code for the footer text
var montreal = {  src: 'montreal.swf' };
sIFR.activate(montreal);
sIFR.replace(montreal, {
  selector: '#footer h6', 
  wmode: 'transparent', 
  src: 'montreal.swf',
  css: ['.sIFR-root {color:#003300; text-align:center;}']
});

//code for menu text
var futuraMdBT = {  src: 'futuraMdBT.swf' };
sIFR.activate(futuraMdBT);
sIFR.replace(futuraMdBT, {
  selector: '.menuTitle', 
  wmode: 'transparent', 
  src: 'futuraMdBT.swf',
  css: ['.sIFR-root {cursor:pointer; color:#003300;}',
		'a {color:#003300; text-decoration:none; cursor:pointer;}',
		'a:hover {color:#003300; text-decoration:none; cursor:pointer;}']
});


function OpenChildWin(nurl,nname, nwidth,nheight) {
  popupWin = window.open(nurl, nname, 'scrollbars=1,width=' + nwidth +',height=' + nheight)
}

function runSiteScripts() {

var so = new SWFObject("flashheader.swf", "flashmov", "900", "443", "6", "ffffff");
so.addParam("wmode","transparent");
so.write("flashheader");

// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}

}