// The following will run as soon as the page is loaded and the DOM is ready, but images might still be loading.
$(function(){	 

$('a#lpShow').hide();

$('a#lpShow').click(function() {
$('#panel_left_inner').slideToggle('slow');
$(this).hide();
$('a#lpHide').show();
return false;
});

$('a#lpHide').click(function() {
$('#panel_left_inner').slideToggle('slow');
$(this).hide();
$('a#lpShow').show();
return false;
});

$('a#rpShow').hide();

$('a#rpShow').click(function() {
$('#panel_right_inner').slideToggle('slow');
$(this).hide();
$('a#rpHide').show();
return false;
});

$('a#rpHide').click(function() {
$('#panel_right_inner').slideToggle('slow');
$(this).hide();
$('a#rpShow').show();
return false;
});

function loadContent(id) {
			$("#contentArea").load("index.php?id="+id+"");
}


});
