// Show/Hide Javascript function

var showHide = {
		
    init: function()
    {
		$('.profile_info').hide();
		$('.profile_person').append(' <img id="image" src="images/arrow_right_list_item.gif" border="0" alt="" />');
		$('.profile_person').click(showHide.showSection);
		
		$('.factsheet_links').hide();
		$('.factsheet_cat').append(' <img id="image" src="images/arrow_right_list_item.gif" border="0" alt="" />');
		$('.factsheet_cat').click(showHide.showSection);
		
		$('.news_story').hide();
		$('.news_title').click(showHide.showSection);		
    },
    
    showSection: function()
    {
    	$(this).next().toggle('slow');
    }
		
}

$(document).ready(showHide.init);
