function hideAllSubs(){
	$.each($('.default'), function() {  
		$(this).css('display','none');
	});
}

$(document).ready(function() {		
	
	var count = 0;
	$.each($('.menu_panel li'), function() {  
		count++;
		$(this).attr('id','box_'+ count);
		$(this).click(function() {	
			hideAllSubs();
			var ref_id = this.id.split('box_')[1]; 
			$('#box_content_'+ ref_id).css('display','block');			
			$('#content_holder.purple').css('background-image',$(this).css('background-image'));
			
		  }
		);									
	});
	
	count = 0;
	$.each($('.default'), function() {  
		count++;
		$(this).attr('id','box_content_'+ count);
		
		if (count > 1){
			$(this).css('display','none');
		}
		
	});
	
	
});
