$(document).ready(function() {
	$(".banner-button")
		.hover(function() {
			$(this).css('cursor', 'pointer')
		})
		.click(function() {
			window.location = $(this).find("a:first").attr('href');
		});
	$(".image_overlay a").click(function(e) {
		e.preventDefault();
		var subtext = $(this).siblings(".subtext").html();
		$.nyroModalManual({
			title: subtext,
			modal: false,
			url: $(this).attr('href')
		});
	});
});