	jQuery().ready(function() {
	
	jQuery("#search-by").change(function() {
		
		target = jQuery(this).attr('value');
		jQuery('.field-options').removeClass('active'); //hide all the field-options		
		jQuery('#' + target + '-options').addClass('active'); //show the target

		
	});
	
	jQuery("#go-search").click(function() { 
				
		theparent = jQuery('select.active').attr('id');
		search = jQuery('#'+theparent).attr('value');
		jQuery('#travel-emp-searches li').removeClass('active');
		
		if (theparent == 'destination-options') {
								

				jQuery('.exp-'+search).addClass('active');
			
		}
		
		if (theparent == 'specialty-options') {
			
			jQuery('.spc-'+search).addClass('active');			
			
		}
		if (theparent == 'name-options') {
			
			
			jQuery('#'+search).addClass('active');
			
		}
		
	
		
		return false; 
		
	});
	
	
	
});