$(window).load(function () {      
      $(".flash_notice").fadeOut(5000, function () {
        $(".flash_notice").remove();
      });     
});

$(function(){
  $('.menu')
    .mouseover(function(){
        var id = $(this).attr("id");
        $("#sub-" + id).show();				
    })
    .mouseout(function(){
        var id = $(this).attr("id");
        $("#sub-" + id).hide();
    });
});

$(function() {
	$('a[@rel*=external]').attr("target", "_new");
});
