function openLytebox(title,url) {
  var el=document.createElement('a');
  
  el.title=title
  el.rel="lytebox"
  el.href=url;
  
  myLytebox.start(el);
}

function bpopenwindow(url,name,features){ 
  if (url.match("bimgdirect.asp"))
  {
    url=url.replace(/bimgdirect/,"img").replace(/html/,"jpg");
    openLytebox("Vergroting",url);
    
  }
  else
  {
    window.open(url,name,features);
  }
}

var dropdown=function() {
	var h=0;
		
	$.each($("ul.menu_sub li ul li"), function() {
		h+=$(this).height();
	});
	
	$("ul.menu_sub li > ul").animate({
		    height: h
		}, 500 );
}

function resizetoright(afb,br,ho) {
 if ((afb.width>br)||(afb.height>ho))
 {
  if (afb.width>afb.height)
  {
    afb.height=(afb.height/afb.width)*ho;
    afb.width=br;
  } else{
    afb.width=(afb.width/afb.height)*br;
    afb.height=ho;  
  }
 }
}

$(document).ready(function(){
	//dropdown();
});
