$(document).ready(function() {
	$("#nav ul ul").css({display: "none"}); // Opera Fix
	$("#nav .nav1 td").hover(function(){
		$(this).find('ul:first').show();
	},function(){
		$(this).find('ul:first').hide();
	});

	$("#nav .nav1 ul > li").hover(function(){
		$(this).find('ul:first').show();
	},function(){
		$(this).find('ul:first').hide();
	});

	
	
	if($().cycle) {
		$('#head_slideshow').cycle({
			fx: 'fade', 
			speed: 1500,
			timeout: 6000
		});
	
		$('#home_slideshow').cycle({ 
			fx: 'fade', 
			speed: 1500, 
			timeout: 8000,
			next: '#next_button',
			prev: '#previous_button'
		});
	}
});

