jQuery(document).ready(function($){
	$('ul li:first-child').addClass('first')
	$('ul li:last-child').addClass('last')
	
	$('dl dt:first-child').addClass('first')
	
	$('#header-right ul.menu li.parent').hover(
		function() {
			$(this).addClass("actives");
			$(this).find('> ul').stop(false, true).fadeIn();
			$(this).find('>ul ul').stop(false, true).fadeOut('fast');
		},
		function() {
			$(this).removeClass("actives");        
			$(this).find('ul').stop(false, true).fadeOut('fast');
			}
		);
		
	$('.art-cols.two.bracket .col:nth-child(2n)').addClass('even');
	
	 $('.home-carousel').jcarousel({
    	wrap: 'circular',
		scroll:1,
		visible:1
    });
	
	 $('.carousel-horiz').jcarousel({
    	wrap: 'circular',
		scroll:1,
		visible:4
    });
	
    $('#slider').nivoSlider({
		effect: 'fade',
		customChange: function(){
            },
		boxCols: 8, // For box animations
		boxRows: 4, // For box animations
		pauseTime: 5000,
		directionNav: false,
		captionOpacity: 1
		});


});
