$(document).ready(function(){
	
	// smooth fading slide show settings
	$('#homePageSlideShow') 
	.before('<div id="navigator">') 
	.cycle({ 
	    fx:     'fade', 
		timeout: 6000,
		cleartype:  true,
		cleartypeNoBg: 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(){
    });
	}

});
