/***
* hospital.js
* (c) 2008, Hospital for Sick Children
************************/

jQuery(document).ready(function() {
	// Superfish is the drop-down menu system
	jQuery("ul.nav").superfish();
	jQuery("ul#utility_links li:first-child").css("border-left","none");
	jQuery("ul#footer_links_main_nav li:first-child").css({background:"none", padding:"0px"});
	jQuery("ul#footer_links_utility li:first-child").css({background:"none", padding:"0px"});

	// Handle select-box navigation for .navigators (ie. Centers, Health in Focus)
	jQuery(".navigator select").change(function () {
		var url = jQuery(this).val();
		location.replace(url);
	})
});

/*function iFrameAutoResize() {
  var iFrame = parent.document.getElementById("test");
  var iFrameContent = iFrame.contentDocument ? iFrame.contentDocument : document.frames("test").document;
  iFrame.height = iFrameContent.body.offsetHeight + 15;
}*/
