$(document).ready(function () {
	
		$(".col:has(h5.promo-label)").addClass("category-label-hilite");
	
		$(".col").hover(
			function() {
				var h5s = $('h5.promo-label', this);
				if (h5s.length > 0) {		
					$(this).addClass("category-label-hover-hilite");
				} else {
					$(this).addClass("category-grid-hilite");
				}
			},
			function() {
				var h5s = $('h5.promo-label', this);
				if (h5s.length > 0) {		
					$(this).removeClass("category-label-hover-hilite");
				} else {
					$(this).removeClass("category-grid-hilite");
				}
			}
		);

//Swap Image on Click
	$(".col").click(function() {
		Broadway.showSpinner(this,202,3);
		window.location = $(this).find("a").attr("href");
		return false;	
	});

});
