jQuery(document).ready(function() {
	jQuery('#back-to-room')

		.mouseout(function(){
			jQuery( this ).children( "span" ).stop().animate( {backgroundPosition:"0% 50%"}, 1000)
		})
		
		 
		.mouseover(function(){
			jQuery( this ).children( "span" ).stop().animate( {backgroundPosition:"100% 50%"}, 800).animate({backgroundPosition:"50% 50%"}, 500,function(){
					jQuery( this ).children( "span" ).animate({backgroundPosition:"(0% 50%)"},600);
			}) 
		})
		
});
