$(document).ready(function() {
	$('#menu td').mouseenter(function() {
		var sub = $(this).children('.submenu');
		if (sub)
			sub.show();
	});
	$('#menu td').mouseleave(function() {
		var sub = $(this).children('.submenu');
		if (sub)
			sub.hide();
	});
	$('#rotating-banner').cycle({
		fx: 'scrollLeft',
		speed: 500,
		timeout: 5000,
		pause: 1
	});
});