$(document).ready(function(){
	$("#slider").easySlider({
		auto: 		true,
		continuous: true,
		numeric: 	true,
		speed: 		1300,
		pause:		5000
	});
  $('.lightbox').lightBox();
    
  $("ul.menu li:not(.active)").hover(
  function(){
    $(this).stop(true,true).animate({
      'padding-left': '+=5'
    });
  },function(){
    $(this).stop(true,true).animate({
      'padding-left': '-=5'
    });    
  });  
});
