// JavaScript Document
$(document).ready( function Blank () {
	$(".blank").append('<img src="/image/common/blank.gif" border="0" />');
	
	$('.blank').click( function(){
        window.open(this.href, '_blank');
        return false;
    });
});

$(document).ready( function BlankSimple () {
	$('.blankSimple').click( function(){
        window.open(this.href, '_blank');
        return false;
    });
});

$(document).ready( function BlankPdf () {
	$(".blankPdf").append('<img src="/image/common/blankPdf.gif" border="0" />');
	
	$('.blankPdf').click( function(){
        window.open(this.href, '_blank');
        return false;
    });
});


//MENU
jQuery(function(){
	var selects = jQuery('select');
	jQuery("#gm li ul").hide();
	jQuery("#gm li").hover(function(){
		var self = jQuery(this);

		if (jQuery.browser.msie)
			selects.css('visibility', 'hidden');

		jQuery("ul:not(:animated)", self).slideDown("fast");
        },
	function(){
		jQuery("ul",this).slideUp("fast");

		if (jQuery.browser.msie)
			selects.css('visibility', 'visible');
	})
})

