$(window).load(function(){
    $('#index div.parent2 div').jCarouselLite({
        auto:3000,
        speed:1000,
        visible : 1,
        btnNext: ".prev",
        btnPrev: ".next"
    });
		$(function(){
			$('.box_skitter_large').skitter({interval: 3000,hideTools: true,navigation: false,animation: 'fade'});
		});
		$('#index .parent2 .next').hover(function(){
					$(this).stop().animate({left : '5px'},'normal','easeOutBounce');
			},function(){
					$(this).stop().animate({left : '13px'},'normal','easeOutBounce');
			}
		);
		$('#index .parent2 .prev').hover(function(){
					$(this).stop().animate({left : '237px'},'normal','easeOutBounce');
			},
			function(){
					$(this).stop().animate({left : '229px'},'normal','easeOutBounce');
			}
		);
});
$(function(){
	$('#index .parent2 div img').hover(function() {
		$(this).stop().fadeTo(500,0.6);
	}, function() {
		$(this).stop().fadeTo(500,1);
	});
});
