


$j(document).ready(function(){
	$j('#pix_menu a').click(function(){
		// Box Id holen
		var loadingContainer = $j(this).attr('id').replace('box_content_', '');
		var containerId = '#' + loadingContainer;
		
		// href leeren
		$j(this).attr('href', 'javascript:void(0)');
		
		$j('#pix_menu a.active').removeClass('active');
		$j(this).addClass('active');
		
		$j('#box_content .box_content').hide('fast', function(){
			$j('#box_content ' + containerId).show('fast');
		})
	});
});


