$(function()
{
	$("#logo_hd img").mouseover(function(){
		$(this).attr("src", "img/logo_hotel_direct_over.gif");
	}).mouseout(function(){
		$(this).attr("src", "img/logo_hotel_direct.gif");
	});
	
	$("div.link a img").mouseover(function(){
		$(this).attr("src", "img/button_view_hotel_on.gif");
	}).mouseout(function(){
		$(this).attr("src", "img/button_view_hotel.gif");
	});
	
	$("#hd img").mouseover(function(){
		$(this).attr("src", "img/button_hoteldirect_on.gif");
	}).mouseout(function(){
		$(this).attr("src", "img/button_hoteldirect.gif");
	});
	
	$("a.video").click(function(){
		openWindow($(this).attr("href"), 917, 488, 'no');
		return false;
	});
	
	$("a.map").click(function(){
		openWindow($(this).attr("href"), 799, 551, 'no');
		return false;
	});
});