//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({speedIn:400,timeout:8000});
	
	
	
	var $pArr = $('#navigation .sdmenu ul li ul li');
	var pArrLen = $pArr.length;
	var pPerDiv = 9;
	for (var i = 0; i < pArrLen; i+=pPerDiv){
	$pArr.filter(':eq('+i+'),:lt('+(i+pPerDiv)+'):gt('+i+')').wrapAll('<div class="column"/>');
	}
	
	
    $('#navigation ul li ul li').mouseover(function() {
	$(this).children().css('display', 'block');
	});

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