$(function() {
 
 $('#content-holder').html( $('#all-content').html());
 
 $("#tab-bg-header a").each( function(){
 	if( $(this).attr("rel") ){
 		var attr = $(this).attr("rel");
 		$(this).bind('click',function() {
 			$('#content-holder').html( $('#'+attr).html() );
 			$('#tab-bg-header a').each(function(){
 			
 				if( $(this).hasClass('active-content')  && $(this).attr("rel")){
 					$(this).removeClass('active-content' );
 				}
 			});
 			$(this).addClass('active-content');
 			return false;
 		});
 	}
 });
 
});
