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();
			}
		);
		
	$(function () {
 		$('#slider .bannergroup').anythingSlider({
			delay : 5000
			}); // add any non-default options here
	});
	
	$("#jcarousel").jcarousel({
		visible: 2
    });
	
		
});
