$(document).ready( function () {
	if (jQuery.browser.msie)
	{
		$('div.ie6_spacer1').css('width', '216px');
	}
	if (jQuery.browser.mozilla)
	{
		$('#spacer2').css('width', '240px');
	}
	if ($(window).width() >= 1280)
	{
		// $('body').css('overflow-x', 'hidden');
	}
	
	$(".peoples").each(function() {
		var peoples = [];
		$(this).find("td").each(function() {
			peoples.push($(this).html());
			$(this).html("");
		});
		peoples.sort(function() {
			return Math.round(Math.random()) - 0.5;
		});
		
		$(this).find("td").each(function(i) {
			$(this).html(peoples[i]);
		});
	
		$(this).css("visibility", "visible");
		
		$(this).find("img").next("br").remove();
		
		$(this).find("img").each(function() {
			var width = $(this).width();
			var height = $(this).height();
			if (width != 150 && height != 200) return;
			
			$(this).wrap("<div class='bordered'><div></div></div>");
		});
	});
});
