function showItem(index) {
	$('#media table tr').each(function() {
		$(this).hide();
	})
	$('#media ul a').each(function() {
		$(this).removeClass('act');
	})
	$('#media table tr:eq('+index+')').show();
	$('#media ul a:eq('+index+')').addClass('act');
}

$(document).ready(function() 
{
	showItem(0);
	
	$('#media ul li a').each(function(i) {
		$(this).bind('click',{ index : i },function(event) {
			showItem(event.data.index);
			event.preventDefault();
		});
	});
});
