//sIFR implementation
function pageScripts(){
var sifr = {  src: skinpath + 'sifr.swf' };
sIFR.activate(sifr);
sIFR.replace(sifr, {
  selector: '#paren', 
  wmode: 'transparent', 
  src:  skinpath +  'sifr.swf', 
  css: [ '.sIFR-root {color:#107bbb; font-size:30px;font-weight:bold;}'  ]
});
sIFR.replace(sifr, {
  selector: '#paren1', 
  wmode: 'transparent', 
  src:  skinpath +  'sifr.swf', 
  css: [ '.sIFR-root {color:#585858; font-size:16px;text-transform:uppercase; width:100px;font-weight:bold;}'  ]
});
sIFR.replace(sifr, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  skinpath +  'bell1.swf', 
  css: [ '.sIFR-root {color:#107bbb; font-size:30px;}'  ]
});
}


//Menu implementation
jQuery(document).ready(function($){
	
	$("#Navigation > ul").superfish({
		delay:200,
		animation:{height:"show"}
	});
	
	/* remove box from links */
	$("a").focus(function(){
		this.blur();
	});
	
	if ($('#flash-photos').length) {
		var so = new SWFObject(skinpath+"images/flash_header_7.swf", "slideshow", "994", "373", "9", "#000000");
		so.addParam("wmode", "transparent", "high");
		so.write("flash-photos");	
	}

});



