	//equal column heights - re-assigning the jQuery object to jQuery instead of $ to eliminate conflicts
	jQuery.noConflict(); 
	function swapLanguage(elm) {
		if(elm == 'spanish') {
			jQuery("#case-info-form-english").hide();
			jQuery("#case-info-form-spanish").show();
		} else {
			jQuery("#case-info-form-english").show();
			jQuery("#case-info-form-spanish").hide();
		}
	}
	function swapFormLanguage(elm) {
		if(elm == 'spanish') {
			jQuery("#form-english").hide();
			jQuery("#form-spanish").show();
		} else {
			jQuery("#form-english").show();
			jQuery("#form-spanish").hide();
		}
	}
	jQuery(document).ready(function() {
		jQuery("#ci").validate();
		jQuery("#contact").validate();
		var highestCol = Math.max(jQuery('#maincolumn').height(),jQuery('#sidebar').height());
		jQuery('.cols').height(highestCol);
		//for the form
		jQuery('.resetOnFocus').one("focus", function() {
  			jQuery(this).val("");
		});
	}); 

