//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');
	});
	
	$('#slides').cycle({  
		fx: 'fade', 
		delay: -3000 ,
		timeout: 8000,
		pager:  '#slide-changer',
		pagerAnchorBuilder: function(idx, slide) { 
			return '#slide-changer a:eq(' + idx + ')'; 
		}
	});
	
	//Navigation Left Menu Fix
	$('#navigation ul .children').each(function(e){
		$('li:last', this).addClass('navLast')
	});	
	
	$('a[href=#page]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	
});
