var $j=jQuery.noConflict();
$j(document).ready(function(){
	$j("label.overlabel").overlabel();

	$j("#secondaryProducts ul li").hover(
		function(){
			$j(this).addClass("active");
		},
		function(){
			$j(this).removeClass("active");
		}
	);

	$j("#secondaryProducts ul li").click(function(){
		window.location=$j(this).find("a").attr("href");
	});
});