
$(document).ready(function() {
	initFunc();
});


function initFunc(){
	//all buttons hover
	$('#reserve').hover(function(){ $(this).css('background-position','left bottom');}, function(){$(this).css('background-position','left top');});
	
}

