jQuery(document).ready(function($){
	
	$('#homePageSlideShow') 
	.before('<div id="navigator">') 
	.cycle({ 
	    fx:     'fade', 
	 	timeout: 7000,
		cleartype:  true,
		cleartypeNoBg: true
});
	
	// modal pop-over window
	$("#SAVED_emergency_info").overlay({
		mask: {
			color: '#333',
			loadSpeed: 400,
			opacity: 0.85
		},
		top: 40,
		closeOnClick: true,
		load: true
		
});

	//makes non-linked a:hover events work for visitors using touch-screens to navigate 
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i)) || (navigator.userAgent.match(/Android/i)) || (navigator.userAgent.match(/BlackBerry/i))) {
    	$("#main_navigation li a").click(function(){
    });
	}
	
	
});
