// JavaScript Document
$(document).ready(function(){
		$("#banner a").click(function(){
			window.open(this);
			return false;
		});
		$(".blank a").click(function(){
			window.open(this);
			return false;
		});
	});

