function load_credits(direction) {
	
	//$("#bottom_content").slideUp("fast");

	var credits_array = ['Blue Mountain State (Spike TV)','Roseannes Nuts (Lifetime)','Pretty Hurts (Logo)','Love and Games (Oxygen)','Teen Mom (MTV)','The Wordl According To Paris (Oxygen)','My Cat From Hell (Animal Planet)','10 On Top (MTV)','L.A.Ink (TLC)','Mob Wives (VH1)','Buzzin (MTV)','Heartland Thunder (Discovery)','King Of The Crown (TLC)','Pretty Wild (E!)','Jersey Shore (MTV)','16 and Pregnant (MTV)','I Used To Be Fat (MTV)','What Chilli Wants (VH1)','E! News Live (E!)','Attack Of The Show (G4TV)','X-Play (G4TV)','How Do I Look (Style Network)','Life In the Fab Lane (Style Network)','Clean House (Style Network)','Mel B Its A Scary World (Style Network)','The Soup (E!)','Disaster Date (MTV)','My Big Redneck Wedding (CMT)','Exposed (MTV)','Is She Really Going Out With Him (MTV)','Teen Cribs (MTV)','Road Rules (MTV)','The Real World (MTV)','Rob Dyrdek Fantasy Factory (MTV)','First Love Second Chance (TV Land)','Kourtney & Khloe Take Miami (E!)','4th and Long (Spike TV)','My Antonio (VH1)','Tough Love (VH1)','Making The Band 4 (MTV)','True Life (MTV)','50 Cent-The Money and the Power','Daily 10 (E! Entertainment)','Live from the Red Carpet (E! Ent.)','Hammertime (A&amp;E)','The Cougar (TV Land)','Parental Control (MTV)','Taking The Stage (MTV)','Pageant Place (MTV)','Major League Baseball (Fox Sports)','NHL Hockey (Fox Sports)','Confessions of a Teen Idol (VH1)','The Pick Up Artist (VH1)','High School Reunion (TV Land)','Sex With Mom and Dad (MTV)','South Park (Comedy Central)','Suprise Homecoming (TLC)','Nick and Vanessas Dream Wedding (TLC)','HighStakes Sweepers (TLC)','Secretly Pregnant (Discovery)','Best Ink (Oxygen)','Caged (MTV)','Sugar High (Food Network)','Wicked Fit (Style Network)','Reality Bites Back (Comedy Central)','Access Hollywood (NBC)','The Hills (MTV)','How To Look Good Naked (Lifetime)','Life Among The Dead (Lifetime)','Scott Baio Is 46 and Pregnant (VH1)','I Know My Kids A Star (VH1)','Victoria Beckham Coming To America','Cheerleader Nation (Lifetime)','America&rsquo;s Next Top Model (CW)','Everybody Hates Chris (CW)','Score feat Ryan Cabrera (MTV)','Trippin feat Cameron Diaz (MTV)','Pimp My Ride (MTV)','Bad Girls Club (OXYGEN)','Rob & Big (MTV)','Yo Mama (MTV)','Reservoir Dogs (Miramax)','Clueless (Paramount Pictures)','Dirty Love (Big Screen Ent.)','Kill Bill Vol. I (Miramax)','Lady Bugs (Paramount)','The Ron Reagan Show (Fox TV)'];


	var html = "<div id='credits_main'>";	

	// Logos: Comedy Central, VH1, MTV, TV Land, Fox Sports, NBC, Lifetime, CW, Oxygen, Miramax, Paramount, Fox
	html += "<div class='network_logos'>";
	html += "<img id='credits_top' src='http://morris-young.com/images/logos/network_logos1.png'/>";
	html += "</div>";
	
	html += "<div id='credits_container'>";

	//html += "<div class='credits_text_container'>";
			
	var num_credits = credits_array.length;

	var dividend = Math.floor(num_credits/3);	
	var remainder = num_credits%3;

	switch(remainder) {
		case 0:
			var num_rows1 = dividend;
			var num_rows2 = dividend;
			break;
		case 1:
			var num_rows1 = dividend + 1;
			var num_rows2 = dividend;
			break;
		case 2:
			var num_rows1 = dividend + 1;
			var num_rows2 = dividend + 1;
			break;
		default:
			break;
	}

	html += "<div class='credits_text credits_left'><div id='column1'><ul>";		
	for(i=0; i< num_rows1; i++) {
		html += "<li>"+ credits_array[i] +"</li>";
	}

	html += "</ul></div></div>";
	html += "<div class='credits_text credits_left'><ul>";

	for(i = num_rows1; i< num_rows1+num_rows2; i++) {
		html += "<li>"+ credits_array[i] +"</li>";
	}
	
	html += "</ul></div>";
	html += "<div class='credits_text credits_left'><ul>";

	for(i = num_rows1+num_rows2; i< num_credits; i++) {
		html += "<li>"+ credits_array[i] +"</li>";
	}
	
	html += "</ul></div>";

	html += "</div>";



	html += "<div class='network_logos'>";
	html += "<img id='credits_bottom' src='http://morris-young.com/images/logos/network_logos2.png' />";
	html += "</div>";

	html += "</div>";
	

	$('#'+current_page+'_page').fadeOut("slow");
	$('#credits_page').html(html).fadeIn('slow');

// Center credits div
	var height = $('#column1').height();
	
	if(height < 361) {
		var padding = ($('#credits_container').height() - height - 15)/2;
		$('.credits_text').css({'padding-top':padding, 'height':height});
	}
	
}
