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');

			Cufon.refresh();

		},

		function() {

			$(this).removeClass("actives");        

			$(this).find('ul').stop(false, true).fadeOut('fast');

			Cufon.refresh();

			}

		);

		

	
	$('#anythingslider').anythingSlider({
		resizeContents: false,
		easing: "swing",
		delay: 5000,
		animationTime:600,
		autoPlay: false
		});
		

});
