// initnifty.js

Event.observe(window, 'load', function() { niftyinit() });

function niftyinit() {
  if(NiftyCheck()) {
    RoundedTop("div#main_box","","#ffffff");

    if (document.getElementById('content_corners') != null) {
      RoundedTopBG("div#content_corners","#ffffff","#ccdded");  // top white
    }

    //RoundedFrame("div#rounded_corners_1","#ffffff","#cccccc");

    if (document.getElementById('rounded_corners_2') != null) {
      RoundedFrame("div#rounded_corners_2","#ffffff","#eeeeee");
    }

    if (document.getElementById('overlay_hotel_details') != null) {
      RoundedFrame("div#overlay_hotel_details","#ffffff","#000000");
    }



//
//  NOTE: inner_container_after_top_box and inner_container_after_top_box_dark are the same 
//        elmenet on different pages. Just different colours so the php outputs the html with
//	  different id's.
//
    if (document.getElementById('inner_container_after_top_box') != null) {    
      RoundedTopBG("div#inner_container_after_top_box","#ffffff","#ccdded"); // top colored
    }

    if (document.getElementById('inner_container_after_top_box_dark') != null) {
      // on some pages the box is a different shade, so we needed to add a different id so
      // that no complicated stuff is really needed here. 
      RoundedTop("div#inner_container_after_top_box_dark","#ffffff","#d4e3f5"); // top colored
    }
    
    if (document.getElementById('footer_box_corners') != null) {
      Rounded("div#footer_box_corners","#ffffff","#97b6d7");
    }
   
    if (document.getElementById('footer_white_box') != null) {
      Rounded("div#footer_white_box","#97b6d7","#ffffff");
    }
  }
}
