$(function(){
  if($.browser.msie && $.browser.version=='6.0') PatchDropDownMenu();
});

function PatchDropDownMenu(){
  $('li','div#leftNav>ul').bind('mouseover',function(){$('ul',this).show();});
  $('li','div#leftNav>ul').bind('mouseout',function(){$('ul',this).hide();});
};

function toggle(id){$('#'+id).toggle();};
function display_proc(id){$('[@id*="fb_div"]').hide();$('#'+id).show();};
function display_faq(id){$('[@id*="fb_div"]').hide();$('#'+id).show();};
function switch_pic(img,desc){$('#ctl00_MasterMainContent_main_pic').attr('src',img);$('#ctl00_MasterMainContent_main_pic_desc').html(desc);}
function switch_pic_proc(img,desc){switch_pic(img,desc);};
function switch_pic_intro(img,desc){switch_pic(img,desc);};
function winBRopen(theURL, Name, popW, popH, scroll,imageDesc) { // V 1.0
  var winleft = (screen.width - popW) / 2;
  var winUp = (screen.height - popH) / 2;
  winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable=no'
  Win = window.open('', Name, winProp)
  Win.document.write("<img src='"+theURL+"'>");
  //Win.document.write("<br>" + parent.document.getElementById('imageDesc').innerHTML);
  if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}
function SetMenuOn(id){$('#'+id).parent().addClass('on');};