
	$("div.button").click(function(event) {
		if(jQuery.support.opacity) {
            $(this).attr("opacity", "1.0");
        }
        window.location.href = $(this).find("a").attr("href");
        
    })

