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();
			}
		);
		
	$('#content h1, .moduletable h3, #bottom-left h3, .item-page h2').wrapInner('<span>');
	
$("#top-menu ul.menu li:nth-child(3n+1)").addClass("red")
$("#top-menu ul.menu li:nth-child(3n+2)").addClass("blue")
$("#top-menu ul.menu li:nth-child(3n)").addClass("yellow")

	$("#slider .slider").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		auto: 5000
    });

$('#bottom-left form.foxform > div').eq(3).addClass('textarea');

	$(".portfolio_list_cont").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 3
    });

});
