$(document).ready(function() {
 	$('#social').hide();
 	$('#search').show();
  	$('#favorites').hide();
   

    $('#isearch').click(function(){
                                $('#search').toggle();
 		$('#social').hide();	
 		$('#favorites').hide();	
    	});
    $('#isocial').click(function(){
                $('#search').hide();
 		$('#social').toggle();	
 		$('#favorites').hide();
                $('#social').load("http://www.catholic-perspective.com/index.php/Catholic/Social", function()  
                     {  
                      $("#social").slideDown("slow");  
                      });  
    	});
    $('#ifav').click(function(){
                                $('#search').hide();
 		$('#social').hide();	
 		$('#favorites').toggle();	
    	});
 });
