function floatMe(){
	//Get our elements for faster access and set overlay width
	  var div = $('div.sc_menu'),
	               ul = $('ul.sc_menu'),
	               // unordered list's left margin
	               ulPadding = 15;

	  //Get menu width
	  var divWidth = div.width();

	  //Remove scrollbars
	  div.css({overflow: 'hidden'});

	 

	  //When user move mouse over menu
	  div.mousemove(function(e){
	    //As images are loaded ul width increases,
	    //so we recalculate it each time
		  
	 	//Find last image container
	    var lastLi = $(this).find('li:last-child');
	    
	    //Get menu width
		var divWidth = $(this).width(); ///////
	    
	    var ulWidth = lastLi[0].offsetLeft + lastLi.outerWidth() + ulPadding;

	    var left = (e.pageX - $(this).offset().left) * (ulWidth-divWidth) / divWidth;
	    $(this).scrollLeft(left);
	  });
}
