jQuery(document).ready(function($){
	$('ul li:first-child').addClass('first')
	$('ul li:last-child').addClass('last')
	
	$('dl dt:first-child').addClass('first')
	
	$('#top-menu ul 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');
			}
		);
		
    $('#slider').nivoSlider({
		effect: 'boxRainGrow',
		customChange: function(){
            },
		boxCols: 8, // For box animations
		boxRows: 4, // For box animations
		pauseTime: 5000,
		directionNav: false,
		captionOpacity: 1
		});
		
	$(function() {
		$( "#tabs" ).tabs({
			fx: { opacity: 'toggle' }
			});
	});

});
