//$(document).ready(
//function(){

////Hotels list displaying
//$.ajax( {
// 	type: "GET",
//	url: $.browser.opera ? "../data/hotels-list.xml" : "./data/hotels-list.xml",
//	dataType: "xml",
//	success : function(xmldata)
//	{
//		$("hotel,casino",xmldata).each( function(i)
//		{
//			$("#hotels").append("<li onmouseout='doSomething(event)'><a href='"+this.getAttribute("url")+"' rel='external'>"+this.getAttribute("name")+"</a></li>")				
//			
//		} );
//	}
//}); 
//}
//);

function doSomething(e) 
{
    if($.browser.msie) return false;
 
    //Fixes problem with blinking menu in mozila and netscape browsers      
    if (!e) var e = window.event;
    e.cancelBubble = true;              
    if (e.stopPropagation) e.stopPropagation(); 
}