
$(document).ready(function(){
  $("#menucont").flash(
    {
      src: 'menu.swf',
      width: '725',
      height: '297',
      wmode: 'transparent',
      flashvars: {curPage: window.location.href}
    },
    {expressInstall: true}
  );
});

function getCurPage(){
  return window.location.href;
}

function smallHeight(){
  $("#menucont").html('').flash(
    {
      src: 'menu_small.swf',
      width: '725',
      height: '100',
      wmode: 'transparent',
      flashvars: {curPage: window.location.href}
    },
    {expressInstall: true}
  );
}