var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	$j("#nav li").mouseover(function(){
		if($j(this).attr("class") != "current"){
			$j(this).css("margin-bottom", "-5px");
			$j(this).children('a').addClass('linksover');
			$j(this).children(".tr").addClass("trover");
			$j(this).children(".tl").addClass("tlover");
		}
	});
	$j("#nav li").mouseout(function(){
		if($j(this).attr("class") != "current"){
			$j(this).children("a").removeClass("linksover");
			$j(this).children(".trover").removeClass("trover");
			$j(this).children(".tlover").removeClass("tlover");
		}
				
	});
	$j("#nav .current .tl").addClass("tlover");
	$j("#nav .current .tr").addClass("trover");
	
	$j("#box23").corner();
	$j("#box24").corner();
	$j("#box25").corner();

	//$j(".productstable tr:odd").addClass("odd");
});
