//When the page has loaded...
$(document).ready(function() {
	
	//Fix the drop down menu mouse over action for IE 6...
	$('.IE6 #navigation li').mouseenter(function() {
		$('ul', this).css('visibility', 'visible');
	});
	
	//Fix the drop down menu mouse out action for IE 6...
	$('.IE6 #navigation li').mouseleave(function() {
		$('ul', this).css('visibility', 'hidden');
	});
	
	//Start image slideshow...
	$('#slideshow').cycle();
	
	//Display fancybox links...
	$('a.fancybox').fancybox({height: 710, overlayColor: '#000000', overlayOpacity: 0.75, padding: 0, width: 505});
	
});
