$(document).ready(function(){
	var fullLength = 0;
	var itemNum = 0;
	var fullDiff = 0;
	var diffPerItem = 0;
	var padLeft = 0;
	var padRight = 0;

	$("#qm0 .dhtmlTopLink").each(function(){
		fullLength += $(this).width();
		itemNum += 1;
	});

	fullDiff = 970 - fullLength;
	diffPerItem = Math.round(((fullDiff / itemNum) - 15) / 2);
	if ((((diffPerItem * 2) + 16) * itemNum) + fullLength > 970)
		padLeft = diffPerItem - 1;
	else
		padLeft = diffPerItem;
	padRight = diffPerItem + 15;

	$("#qm0 .dhtmlTopLink").css("padding-left",padLeft + "px");
	$("#qm0 .dhtmlTopLink").css("padding-right",padRight + "px");
	$("#qm0 .dhtmlTopLink:last").css("border-width","0px");
	$("#qm0 .dhtmlTopLink:first").css("padding-right",padLeft + "px");

	var newLength = (itemNum * (padLeft + padRight + 15)) + fullLength + (itemNum - 1);
	$("#qm0").css("width",newLength + "px");
	$("#topmenu").css("text-align","center");
	$("#topmenu #qm0").css("visibility","visible");

	$("#itemMainDiv .moreImages").mouseover( function(){
	  $(this).css("border-color","#7b0099");
	});
	$("#itemMainDiv .moreImages").mouseout( function(){
	  $(this).css("border-color","#dbdbdb");
	});
});
