$(function(){

	//menu left 
	$('#menupdt .mnu').hover(
		function(){
			$(this).css({'background':'#7BA4D5'});
		},
		function(){
			$(this).css({'background':'#256FA1'});
		}
	);
});

$last_id = -1;
function swapit(mnu, id){
    if ($last_id == -1) {
        $('.'+mnu+' #table_p1').hide();
        $('#title'+mnu+'1').css('color','#333333');
    }
    if ($last_id  > 0) {
        $('.'+mnu+' #table_p'+$last_id).hide();
        $('#title'+mnu+$last_id).css('color','#333333');
    }
    $('.'+mnu+' #table_p'+id).fadeIn(500);
    $('#title'+mnu+id).css('color','white');
    $last_id = id;
}