$(document).ready(function() {
    	if (typeof(rotatingbanner) != undefined) {
    		$('.rotating-image-banner').cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			timeout: 5000,
			containerResize: false,
			width: 760,
			height: 170
		});
    	}
    	
    	// set up top menu navigation
	$('#menu ul li').hover(
		function() {
			$(this).addClass("hover_item");
			$('.submenu', this).show();
		},
		function() { 
			$(this).removeClass("hover_item");
			$('.submenu', this).hide();
		}
	);
});
