function showLayer() {

	$('#overlay1').fadeIn('300');
	
	}

function hideLayer() {

	$('#overlay1').fadeOut('300');
}


function hover(hid) {
							
		$("#"+hid).hover(
		function () {
			 $("#price"+hid).addClass("hover");
		},
		function () {
			$("#price"+hid).removeClass("hover");
		});
}	
