$(document).ready(function() { 

	var txt = $("#select p").html();	
	
	$("#select li span").bind("mouseenter",function(){
		
	       w_txt = $(this).html();
	       $(this).css('background-position','top');
	       $("#select p").html(w_txt);	       
	       
	}).bind("mouseleave",function(){
	
	       w_txt = $(this).html();
	       $(this).css('background-position','bottom');
	       $("#select p").html(txt);		
	});
	
	$().UItoTop({ easingType: 'easeOutQuart' });
}); 
