// JavaScript Document

(function($){

    $(document).ready(function() {	
		$('.slides').show();	
		$('.pagination_slides').show();					   
		$('.slides').cycle({
			fx: 'fade',
			speed: 'slow',
			timeout: 10000,
			containerResize: 0,
			cleartype: true,
			cleartypeNoBg: true,
			pager: '#carousel ul',
			pagerAnchorBuilder: function(idx, slide) { 
				return '#carousel ul li:eq(' + idx + ') a'; 
			} 
		}); 
        $('#carousel ul:first').children().hover(
    		function(){$(this).addClass('hover');},
    		function(){$(this).removeClass('hover');}
    	);
		
		$('#carousel ul li').css('padding-left', function(){
			var liCount = $('#carousel ul li').length;
			var width = 719;
			width -= (liCount * 54);
			liCount += 1;
			return width/liCount;
		});
		$('#MenuBar1:first').children().hover(
    		function(){
				$(this).addClass('hover');
    		},
    		function(){
        		$(this).removeClass('hover');
    		}
    	);
    });
})(jQuery);
