/**/
  
  		$(document).ready(function(){
       		// $("#tracker").jBreadCrumb();
	       	
	       	
	       	$("#eventSearch_subject, #eventSearch_timelimit, #eventSearch_area, #search_input").each( function() {
	       	if($(this).val()!='') {
					$(this).parent().css('background', '#E3DBD2');
				} else {
					$(this).parent().css('background', '#F7F4F3');
				}
	       	});
	       	
	       	$("#eventSearch_subject, #eventSearch_timelimit, #eventSearch_area").change( function() {
	       		if($(this).val()!='') {
					$(this).parent().css('background', '#E3DBD2');
				} else {
					$(this).parent().css('background', '#F7F4F3');
				}
       		});
       		
       		$("#search_input").keyup( function() {
	       		if($(this).val()!='') {
					$(this).parent().css('background', '#E3DBD2');
				} else {
					$(this).parent().css('background', '#F7F4F3');
				}
	       	
	       	});
        });
/**/
