// Set jQuery
$(function(){

// Dropdown
$('#navi li').each(function(i){
	var hovObj = (i==100) ? $(this).children('a') : $(this).find('dt a');
	var subObj = (i==100) ? null : $(this).find('dd');
	
	$(this).hover(function(){	
		if(!hovObj.hasClass('hov')){
			hovObj.addClass('hov');
			if(subObj!=null) subObj.slideDown('fast');
		}
	},function(){
		if(i==100){
			hovObj.removeClass('hov');
		}else{
			if(subObj!=null) subObj.slideUp('fast',function(){
				hovObj.removeClass('hov');
			});
		}
	});
});	



});
function popupWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
