$(function() {
	$(".prev").hover(function(){
	  $(this).animate({ marginLeft: "-10"}, "fast");
	},
	function(){
	  $(this).animate({ marginLeft: "0"}, "fast");
	});
	$(".next").hover(function(){
	  $(this).animate({ paddingLeft: "10"}, "fast");
	},
	function(){
	  $(this).animate({ paddingLeft: "0"}, "fast");
	});
	$("#imageCarousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		vertical: true,
		speed: 600
    });
	$("#infoCarousel").cycle({
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '.next', 
    prev:   '.prev' 
    });
		$("#navigation").lavaLamp({
		fx: "backout", 
		speed: 700
	});
});
Cufon.replace('.c',{hover: true,fontFamily: 'Aller'});
