$(document).ready(function() {

	// BROWSER TOGGLE start =============== >>
	
	$("#tab").hide();
	
	$("#login-button").mouseenter(function(){
	  $("#tab").show(); 
	});
	
	$("#tab").mouseleave(function(){
	  $("#tab").hide(); 
	});
	
	// CAROUSEL start =============== >>           
	
	$(".slides").jCarouselLite({
	    btnNext: ".next",
	    btnPrev: ".prev",
	    visible: 3,
	    circular: true
	});

}); //JQUERY end
