//sIFR implementation
function pageScripts(){
var ShelleyAllegroScript = {  src: DNN_skinPath + '/flash/kazukagothic.swf' };
sIFR.activate(ShelleyAllegroScript);
sIFR.replace(ShelleyAllegroScript, {
  selector: 'h1', 
  wmode: 'transparent', 
  src:  DNN_skinPath +  '/flash/kazukagothic.swf', 
  css: [ '.sIFR-root {color:#726689; font-size:24px;}'  ]
});
}

//Menu implementation	   
jQuery(document).ready(function(){

	jQuery("#Navigation > ul").superfish({
		delay:800,
		animation:{height:"show"}
	});

//Home

var PathHome = DNN_skinPath + "images/home.jpg";

jQuery(
"#Navigation40").append("<a href='#' title=''></a>");

jQuery(
"#Navigation40").find("img").mouseover(function () {

var PathHomeON = DNN_skinPath + "images/home_hover.jpg";

jQuery(
this).attr({ src:PathHomeON });

});

jQuery(
"#Navigation40").find("img").mouseout(function () {

var PathHomeON = DNN_skinPath + "images/home.jpg";

jQuery(
this).attr({ src:PathHomeON });

});



//End

//providers

var PathHomeo = DNN_skinPath + "images/providers.jpg";

jQuery(
"#Navigation83").append("<a href='#' title=''></a>");

jQuery(
"#Navigation83").find("img").mouseover(function () {

var PathHomeON = DNN_skinPath + "images/providers_hover.jpg";

jQuery(
this).attr({ src:PathHomeON });

});

jQuery(
"#Navigation83").find("img").mouseout(function () {

var PathHomeON = DNN_skinPath + "images/providers.jpg";

jQuery(
this).attr({ src:PathHomeON });

});

//End
//services
	var PathHome = DNN_skinPath + "images/services.jpg";
	jQuery("#Navigation79").append("<a href='#' title=''></a>");

	jQuery("#Navigation79").find("img").mouseover(function () {
				var PathHomeON = DNN_skinPath + "images/services_hover.jpg";
				jQuery(this).attr({ src:PathHomeON });

	});
	jQuery("#Navigation79").find("img").mouseout(function () {
				var PathHomeON = DNN_skinPath + "images/services.jpg";
				jQuery(this).attr({ src:PathHomeON });
	});
	//End

	//resources
	var PathHome = DNN_skinPath + "images/resources.jpg";
	jQuery("#Navigation67").append("<a href='#' title=''></a>");

	jQuery("#Navigation67").find("img").mouseover(function () {
				var PathHomeON = DNN_skinPath + "images/resources_hover.jpg";
				jQuery(this).attr({ src:PathHomeON });

	});
	jQuery("#Navigation67").find("img").mouseout(function () {
				var PathHomeON = DNN_skinPath + "images/resources.jpg";
				jQuery(this).attr({ src:PathHomeON });
	});
	//End



	//patientinfo
	var PathHome = DNN_skinPath + "images/patientinfo.jpg";
	jQuery("#Navigation64").append("<a href='#' title=''></a>");

	jQuery("#Navigation64").find("img").mouseover(function () {
				var PathHomeON = DNN_skinPath + "images/patientinfo_hover.jpg";
				jQuery(this).attr({ src:PathHomeON });

	});
	jQuery("#Navigation64").find("img").mouseout(function () {
				var PathHomeON = DNN_skinPath + "images/patientinfo.jpg";
				jQuery(this).attr({ src:PathHomeON });


});


});







