$(document).ready(function() {
 $('#form-clinic-search [name="country_id"]').change(function(){
  $('#form-clinic-search select[name="city_id"] option:gt(0)').remove();
		$.getJSON('modules/_cities.php', {lang_id:lang_id, country_id: $(this).find('option:selected').val()},
   function(data) {			
				$.each(data, 
					function(key, value) {   
						$('#form-clinic-search [name="city_id"]').append($(document.createElement("option")).val(key).text(value)); 
					});
		 })  
	});		

 $('#form-search input').blur(function(){
	 if ($(this).val() == '')
	  $(this).val(search_prompt)
 });
	
 $('#form-search input').focus(function(){
	 if ($(this).val() == search_prompt)
	  $(this).val('')
	});	

 function changeBottomPhrase() {
		$('.bottom-title a').fadeOut(500, 
		 function(){
				phrase_no = (phrase_no + 1) % phrases.length;
				$('.bottom-title a').html(phrases[phrase_no]).fadeIn(500)
			}
	 );
	}
 
	setInterval(changeBottomPhrase, 5000)
})
