$j(document).ready(function(){
			searchBox.UseFreshCountryData = true;
			searchBox.SubmitURL = 'http://www.themovechannel.com/property/search/';
			searchBox.AutoPriceIndexSelect = false;
			
			Init();
			
			$j(searchBox.KeywordsTextBox).show();
			$j(searchBox.MinBedDropDown).hide();
			$j(searchBox.MaxBedDropDown).hide();
			$j(searchBox.RegionDropDown).hide();
			$j('#searchPropertyID').hide();
			$j('#searchPropertyName').hide();
			
			$j(searchBox.CurrencyDropDown).after(searchBox.CountryDropDown);
			$j(searchBox.MinPriceDropDown).after(searchBox.AutoCompleteTextBox);
			$j(searchBox.MaxPriceDropDown).after(searchBox.KeywordsTextBox);
			
			$j('#searchForm').show();
			
			Utils.DropDownSelect(searchBox.CurrencyDropDown,'GBP');
			$j(searchBox.CurrencyDropDown).click();
			
			searchBox.SelectedCurrencyCode = $j("option:selected",searchBox.CurrencyDropDown).val();
			//alert(searchBox.SelectedCurrencyCode);
			searchBox.UpdateSubmitButton();
			if(searchBox.SelectedCurrencyCode=='GBP'||searchBox.SelectedCurrencyCode=='EUR'||searchBox.SelectedCurrencyCode=='USD'){
				//alert(searchBox.SelectedCurrencyCode);
				searchBox.ExchangeRate = Utils.getCurrencyRateByCurrency(searchBox.SelectedCurrencyCode);
				searchBox.CurrencyCode = searchBox.SelectedCurrencyCode;
			}else{
				searchBox.ExchangeRate = parseInt(Utils.getCurrencyRate($j("option:selected",searchBox.CountryDropDown).text()));
				//alert(this.ExchangeRate);
				searchBox.CurrencyCode = $j("option:selected",searchBox.CurrencyDropDown).val();
			}
			
			if(searchBox.ExchangeRate==0){ExchangeRate=1;}
			searchBox.FillMinPriceDropDown();
			if($j(searchBox.MinPriceDropDown).is(":disabled")){searchBox.MinPriceDropDown.disabled=false;}
			searchBox.MaxPriceDropDown.disabled=true;
			searchBox.SelectedMixPrice = 0;
			searchBox.SelectedMaxPrice = 0;
			
			if($j(searchBox.MinBedDropDown).is(":disabled")){searchBox.MinBedDropDown.disabled=false;}
			searchBox.FillMinBedsDropDown();	
			
			/* change controls background color to white */
			$j('.DatoGenerico input.LargeJ').css("background-image","none");
			$j('.DatoGenerico input.LargeJ').css("background-color","white");
			
			showVideo();
			
		});

