$(document).ready(function(){

	if($.browser.msie) {
		
		// property drop down
		$("#dropdown_name").mousedown(function(){
			$(this).css("width","auto");
		});
		
		$("#dropdown_name").change(function(){
			$(this).css("width","180px");
		});
			
		$("#dropdown_name").blur(function(){
			$(this).css("width","180px");
		});
			
		// location drop down
		$("#dropdown_location").mousedown(function(){
			$(this).css("width","auto");
		});
		
		$("#dropdown_location").change(function(){
			$(this).css("width","180px");
		});
			
		$("#dropdown_location").blur(function(){
			$(this).css("width","180px");
		});
		
	}
			
}); 

function createCleanUrl(id1,id2) {
	
	text = jQuery('#'+id1).val().replace(/ /g, '-').replace(/\./g, '').replace(/\!/g, '').replace(/\,/g, '').replace(/\//g, '_').replace(/\&/g, '_').replace(/\'/g, '').replace(/\"/g, '').toLowerCase();

	jQuery('#'+id2).val(text);

	return false;
	
}