//
//  Preload Accommodation Images
//
    if (document.images)
    {
    preload_image = new Image();
    img_path = new Array();

    img_path[0] = "../images/ap-fact-smn-accomodations01.jpg";
    img_path[1] = "../images/ap-fact-smn-business01.jpg";	
    img_path[2] = "../images/ap-fact-smn-dining01.jpg";
    img_path[3] = "../images/ap-fact-smn-hotel01.jpg";	
    img_path[4] = "../images/ap-fact-smn-hotel02.jpg";
    img_path[5] = "../images/ap-fact-smn-hotel03.jpg";
    img_path[6] = "../images/ap-fact-smn-leisure01.jpg";
    img_path[7] = "../images/ap-fact-smn-location01.jpg";
    img_path[8] = "../images/ap-fact-smn-meetings01.jpg";
    img_path[9] = "../images/ap-fact-smn-photos01.jpg";	

    for(var i = 0; i<=img_path.length; i++)
    preload_image.src = img_path[i];
    }
