/**
 * Public site boot-strap
 * 
 * @author Ollie Maitland
 * @copyright Byng Systems LLP
 * 
 */


/**
 * Country object
 * 
 * @type Country
 */
var Country;

var Public = {
	/**
	 * OnLoad method
	 *
	 */
	start : function () {
			if ( $('country_box') ) {
				Country = new CountrySelector();
		}
	}
}

window.addEvent ('domready', Public.start);


