// JavaScript Document
$(function(){
	$.getScript('JS/jquery-courage-tool-timer.js', function(){
		var timer = null;
		$('div.prosBox').tabs().slideDown('slow');
		$('.proBoxItem').not('.proBoxItemMenu .proBoxItem').mouseover(function(){
			$('.proBoxItemMenu').hide();
		});
		$('.proBoxItemA').mouseover(function(event){
			if (event.target == this) {
				var _this = $(this);
				if(_this.next().attr('class') == 'proBoxItemMenu'){
					$('.proBoxItemMenu').hide();
					_this.next().css({left:_this.offset().left - 33, top:_this.offset().top - 12, zIndex: 1000})
					.show();
				}
			}
		})
		.mouseout(function(event){
			if (event.target == this) {
				var _this = $(this);
				if(_this.next().attr('class') == 'proBoxItemMenu'){
					if(timer != null)
						timer.stop();
					timer = $.timer(6000, function(){
						_this.next().hide();   
					});
				}
			}   
		});				
	});
});
