$(document).ready(function () {
	$(".col div.category-grid-top").hover(function() {
		$(this).addClass("category-img-hilite");
	}, function() {
		$(this).removeClass("category-img-hilite");
	});

	$(".col div.category-grid-top").click(function(eventData) {
		Broadway.showSpinner(this,188,3);
		window.location = $(this).find("a").attr("href");
		return false;
	});
	
	$("#upright-compare,.upright-tune-up-container").fancybox({'frameWidth':780,'frameHeight':550}); 	
});

