/* Row hover for sortedTable */
	$("table.sortableTableShell tr").hover(
		function () {
			$(this).children('td').addClass('rowHover');
		}, 
		function () {
			$(this).children('td').removeClass('rowHover');
		}
	);


/* Hide Kundennummer */
	function hideCustNr(){
		if ($("td.stdFormImgCol").length > 0){
			$("div.orderForm input[name=customerNumber]").parents("tr.row_normal").hide();
		}
	}


/* Show Info Boxes */
	$("span[id^=infoBox_]").hover(
		function(){
			$(this).children('span.text').css('display', 'block')
		},
		function(){
			$(this).children('span.text').css('display', 'none')
		}
	);

