//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');
	});
	
	$('#slideshow ul').cycle({  
		fx: 'fade', 
		timeout: 7000,
		prev: '#slideshow-left a',	
		next: '#slideshow-right a'
	});	
	
	$(".current_page_item > a").addClass("current-page");
	
	$("a[rel='colorbox']").colorbox();
	
});
