/*
 -------------------------------------------------------------------------------
 * jQuery popup js
 *
 * USAGE
 *  if rollover image, add class "blank"
 *
 * EXAMPLE
 *  <a href="http://example.com" class="blank"><img src="images/menu01.gif /></a>
 *
 -------------------------------------------------------------------------------
 */
jQuery(function(){
	jQuery(".blank").each(function(){
		var $t = jQuery(this) ;
		var jumpURI = $t.attr("href").toString() ;
		
		if( !jumpURI.match(/^(https?)?.+[\-_\.!~*\'\(\)a-z0-9;\/?:\@&=+\$,%#]+$/i) ) {
			return ;
		}
		$t.data("ref", $t.attr("href")) ;
		$t.attr("href", "javascript:void(0);")
		jQuery(this).click(function(){
			window.open(jQuery(this).data("ref")) ;
		}) ;
	}) ;
}) ;
