/* Slider
*********************************** */
$(function() {
	$(".jcarousel").jCarouselLite({
		auto: 8000,
		speed: 600,
		circular: true,
		visible: 4
	});
})

/* Effects
*********************************** */
$(function(){
	$('div#lang').hover( function(){
			$(this).find('.language').stop().animate({'paddingTop': '10px'}, {queue: false, duration: 100});
		} ,
		function(){
			$(this).find('.language').stop().animate({'paddingTop': '5px'}, {queue: false, duration: 100});
		} 
	);	
});
