$(function() {
	rePos();
	ht();
});
$(window).resize(function(){
  rePos();
});
function rePos() {
	var pos = $("#footer").position();
	$('#price').css({top: pos.top-$('#price').height(), left: pos.left});
}

function ht() {
    var path = location.pathname.substr(location.pathname.lastIndexOf("/")+1);
	path=(path==""?"index.html":path);
	$('#sidebar1 p a').each(function() {
		 var hr = $(this).attr('href');
		 if (hr.substr(hr.lastIndexOf("/")+1)==path) $(this).parents("p").addClass("sel");
	});
}