$(document).ready(function () {
 $("ul.menu").supersubs({
        minWidth: 10,     
        maxWidth: 30,
        extraWidth: 1 
    }).superfish({
        animation: {
            opacity: .95,
            height: "show"
        },
        delay: 100
    });
    $(".ListTable tr.ItemRowOdd, .ListTable tr.ItemRowEven ").click(function(){
    window.location=$(this).find("a").attr("href");return true;
	});
	$('.GetLowestPriceLink a').click(function(event){
	event.stopPropagation()
	});

});		
 
