if (jQuery) {
	$(function() {
        	$("#topCloseButton").css({
                	float: "left",
	                position: "relative",
        	        top: "30px"
	        }).hover(
        	        function() {
                	        $(this).css({
                        	        background: "url(/images/layout/topclose.png) no-repeat",
                                	zIndex: "100"
	                        });
        	        },
                	function() {
                        	$(this).css({
                                	background: "none"
	                        });
        	        }
	        ).click(function() {
        	        window.location.href = "http://www.google.com";
	        });
	});
}

