$(document).ready(function(){
  $(".nav").superfish({
		animation : { opacity:"show", height:"show" }
	});
});

function CreateBookmarkLink(vTitle, vUrl) {
  title = vTitle;
  url = vUrl;
  if (window.sidebar) {
    window.sidebar.addPanel(title, url,"");
  } else if ( window.external ) {
    window.external.AddFavorite( url, title);
  } else if (window.opera && window.print) {
    return true;
  }
}

jQuery.fn.idle = function(time){
  var i = $(this);
  i.queue(function(){
    setTimeout(function(){
      i.dequeue();
    }, time);
  });
};
