function open_win(EstablishmentId)
{
window.open("advert.asp?EstablishmentId=" + EstablishmentId + "","_blank","toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=650, height=500")
}




$(document).ready(function(){
	$(".rollover").hover(
		function(){
			if($(this).attr("src").indexOf("_over") == -1) {
				var newSrc = $(this).attr("src").replace(".gif","_over.gif#hover");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("_over.gif#hover") != -1) {
				var oldSrc = $(this).attr("src").replace("_over.gif#hover",".gif");
				$(this).attr("src",oldSrc);
			}
		}
	);
});


function OnButton1()
{
document.form1.action = "index.asp"
document.form1.submit(); // Submit the page
return true;
}
function OnButton2()
{
document.form1.action = "barsandrestaurants.asp"
document.form1.submit(); // Submit the page
return true;
}
