//When the page has loaded...
jQuery(document).ready(function() {
	
	//Fix the drop down menu mouse over action for IE 6...
	jQuery('.IE6 #navigation li').mouseenter(function() {
		jQuery('ul', this).css('visibility', 'visible');
	});
	
	//Fix the drop down menu mouse out action for IE 6...
	jQuery('.IE6 #navigation li').mouseleave(function() {
		jQuery('ul', this).css('visibility', 'hidden');
	});
	
	//Start image slideshow...
	jQuery('#slideshow').cycle({
		speed: 4000,
	});
	
	jQuery('#navigation ul li ul li').mouseover(function() {
		jQuery(this).children().css('display', 'block');
	});

	jQuery('#navigation ul li ul li').mouseout(function() {
		jQuery(this).children('ul').css('display', 'none');
	});
	
});
