$(function(){	
	$('.testi-carousel').jCarouselLite({
		visible: 2,
		auto: 5000,
		speed: 1000,
		vertical: true
	});
	
	// Drop Down
	$('.menuTop ul li:has(div)').click(function(e) {
		//e.preventDefault();
	});
	$('.menuTop ul li:has(ul)').hover(
		function(){
			if ( $(this).children('ul').css('display') == 'none' ) 
				$(this).children('ul').slideDown();
		}, 
		function(){
			$(this).children('ul').slideUp();
		}
	);
	
	$('.lavaLamp').lavaLamp({ 
		fx: "easeOutBack", 
		speed: 700
	});
	
	// Carousel
	$('.carousel').jCarouselLite({
		visible: 3,
		auto: 1,
		speed: 2500
	});
	
	// Disable Parent Click
	$('.lavaLamp li:has(span) > a').click(function(e){
		e.preventDefault();
	});
});
