$(document).ready(function () {
    $("#content .ListTable tr.ItemRowOdd, #content .ListTable tr.ItemRowEven ").click(function(){
    window.location=$(this).find("a").attr("href");return true;
        });
        $('.GetLowestPriceLink a').click(function(event){
        event.stopPropagation()
        });
});		

// needs to wait untill page is loaded to be able to find the text
$(window).bind("load", function() {
   $('span:contains("Location: Dallas")').hide();
});

$(window).load(function() {
	$('.slides').nivoSlider({
		effect:'random', //Specify sets like: 'fold,fade,sliceDown'
		slices:15,
		animSpeed:500,
		pauseTime:5000,
		directionNav:false, //Next & Prev
		controlNav:false, //1,2,3...
		controlNavThumbs:false, //Use thumbnails for Control Nav
		keyboardNav:true, //Use left & right arrows
		beforeChange: function(){},
		afterChange: function(){},
		slideshowEnd: function(){} //Triggers after all slides have been shown
	});
});
