$(document).ready(function(){
	$('a.togglelist').click(function(event){
		$('.subitemlist').hide();
		$('.togglelist').css('color', 'gray');
		$('.itemimg').attr('src', 'plugins/portfolio/layout/port_arrow_rgt.png');
		var id = this.rel;
		$('img#itemimg_'+id).attr('src', 'plugins/portfolio/layout/port_arrow_dwn.png');
		$('a#itemlink_'+id).css('color', 'white');
		$('div#itemlist_'+id).show();
	});
	$('a#man_cat').click(function(event){
		$('a#man_pro').css('font-weight', 'normal');
		$('a#man_pic').css('font-weight', 'normal');
		$('a#man_cat').css('font-weight', 'bold');
		$('div#manage_projects').css('display', 'none');
		$('div#manage_pics').css('display', 'none');
		$('div#manage_cats').css('display', 'block');
	});
	$('a#man_pro').click(function(event){
		$('a#man_pro').css('font-weight', 'bold');
		$('a#man_pic').css('font-weight', 'normal');
		$('a#man_cat').css('font-weight', 'normal');
		$('div#manage_projects').css('display', 'block');
		$('div#manage_pics').css('display', 'none');
		$('div#manage_cats').css('display', 'none');
	});
	$('a#man_pic').click(function(event){
		$('a#man_pro').css('font-weight', 'normal');
		$('a#man_pic').css('font-weight', 'bold');
		$('a#man_cat').css('font-weight', 'normal');
		$('div#manage_projects').css('display', 'none');
		$('div#manage_pics').css('display', 'block');
		$('div#manage_cats').css('display', 'none');
	});
});