$(document).ready(function()
{		
        
        $("div.detailed_info").hide();
        $("div.close_button").hide();
        
				// drawer...
				$("div.detailed_button a").click(function()
				{
				  $(this).parent().parent().children("div.close_button").show(); 
				  $(this).parent().hide();
				  $(this).parent().parent().children("div.entry_info").children("div.detailed_info").slideToggle(400);
        	return false;

				});
				
				$("a.provider_name").click(function()
				{
				  $(this).parent().parent().parent().children("div.close_button").show(); 
				  $(this).parent().parent().parent().children('div.detailed_button').hide();
				  $(this).parent().parent().parent().children("div.entry_info").children("div.detailed_info").slideDown(400);
        	return false;

				});
        	
				$("div.close_button a").click(function()
				{
				  $(this).parent().parent().children("div.detailed_button").show(); 
          $(this).parent().hide();
          $(this).parent().parent().children("div.entry_info").children("div.detailed_info").slideToggle(400);
         	return false;

				});		

});
