function equalHeight(group){
	var tallest = 0;
	$(group).each(function(){
		var thisHeight = $(this).height();
		if ( thisHeight > tallest ) {
			tallest = thisHeight;
		}
	});
	$(group).height(tallest);
}	
$(document).ready(function(){
 equalHeight(".store .leftSide, .store .centerSide, .store .rightSide");
});
$(document).ready(function(){

	$(".cartContent thead th:nth-child(1)").width("58px");
	$(".cartContent thead th:nth-child(2)").width("442px");
	$(".cartContent tbody td:nth-child(1)").css({
		"padding" : "0px 15px"
	});
	$(".cartContent tbody td:nth-child(1) input").css({
		"display" : "block",
		"width" : "19px",
		"border" : "1px solid #a658a8",
		"height" : "14px",
		"padding" : "6px 4px 6px 4px",
		"color" : "#a658a8",
		"font-family" : "Verdana, Arial, Helvetica"
	});
	$(".cartContent thead th:nth-child(2)").css({
		"text-align" : "left",
		"padding-left" : "15px"
	});
	$(".cartContent tbody td:nth-child(2)").css({
		"padding" : "15px 15px"
	});
	$(".cartContent tbody td:nth-child(2) input").css({
		"width" : "217px",
		"padding" : "3px"

	});
	$(".cartContent tbody td:nth-child(3), .cartContent tbody td:nth-child(4)").css({
		"font-weight" : "bold",
		"font-size" : "16px", 
		"color" : "#a658a8"
		
	});
	$(".cartContent thead th:nth-child(3)").css({
		"width" : "116px",
		"text-align" : "center"
	});
	$(".cartContent thead th:nth-child(4)").css({
		"width" : "116px",
		"text-align" : "center"
	});
	$(".cartContent thead th:nth-child(5)").css({
		"width" : "20px",
		"text-align" : "center"
	})
	$(".cartContent tbody td:nth-child(3)").css({ "text-align" : "center"});
	$(".cartContent tbody td:nth-child(4)").css({ "text-align" : "center"});
	$(".cartContent tbody td:nth-child(5)").css({ "text-align" : "center",  "padding-right" : "10px", "padding-left" : "15px"});
	function confirmTable(){
		$(".cOTable td:nth-child(2)").css("color", "#a658a8").css("text-align", "right");
		$(".cOTable tr:eq(3) td").css("padding-bottom", "5px");
	
	}
	$(document).ready(confirmTable);
});
