//When the page has loaded...
$(document).ready(function() {
	
	//Fix the drop down menu mouse over action for IE 6...
	$('.IE6 #membersNav li').mouseenter(function() {
		$('ul', this).css('visibility', 'visible');
	});
	
	//Fix the drop down menu mouse out action for IE 6...
	$('.IE6 #membersNav li').mouseleave(function() {
		$('ul', this).css('visibility', 'hidden');
	});
	
	//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();
			//Header Cycle
	if ($('#slide')){
	//Cycle through sites
	$('#slide').cycle({
	fx: 'fade',
	timeout:  4000,
	speed:	2000
	});
	}
	
		
	//Start logo slideshow
	$('#sideLogos').cycle({ 
		speed:  'fast', 
		 delay: -3000, 
	});
	
	$('.courseName').val($('h1.post-title').text());
});
