/* FADE IN - FADE OUT FOR ADVANCED SEARCH DIV */
jQuery(document).ready(function(){
	jQuery(".advanced_search").click(function() {
			var id = $(this).attr('id');
			id = id.split('caller_')[1];

    	$('#'+id).removeClass("hidden");
    	$(this).addClass("hidden");
	}); 
});
