// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
			$(document).ready(function(){
				var block = $(".glow");
				block.click(function(){
					window.location = $(this).find("a:first").attr("href")
				});
				block.addClass("clickable");
				block.hover(function(){
					window.status = $(this).find("a:first").attr("href")
				}, function(){
					window.status = ""
				})
			});
		</script>

/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/
