/********************************** UNBIND ***********************************/

// var unbindlava = function(){
	// $(this).unbind('menulava');
// };
// $(window).load(unbindlava);
/************************* MENU ANIME ********************************/

	$(document).ready(function () {
	// $('#navig').unbind(menulava);
		//Append a div with hover class to all the LI
		$('#navig li').append('<div class="hover"><\/div>');
		$('#navig li').hover(
		//Mouseover, fadeIn the hidden hover class	
		function() {
			$(this).children('div').fadeIn('1000');	
		}, 
		//Mouseout, fadeOut the hover class
		function() {
			$(this).children('div').fadeOut('1000');
		}).click (function () {
			//Add selected class if user clicked on it
			$(this).addClass('selected');
		});
	});

/************************* JCAROUSEL ********************************/

	$(document).ready(function() {
			$('#lwdcarousel').jcarousel({
				scroll: 1,
				auto: 2,
				animation: "slow",
				wrap: "last"
			});
	});
