$(document).ready(function()
{
  // Init pdBox
  $('.thickbox').pdBox({minWidth: 400});  
	
  // MAIN MENU
  $('#main-menu li:first-child span').css('border', 'none');
  
  // VERTICAL ALIGN - FIX FOR IE
	  with (navigator) {browser=appName;}
    if (browser=="Microsoft Internet Explorer") {
    	$('.normal-crossroad .img-box').each(function(){ 
		     var imgBoxH = $(this).height();
		     $('img', this).each(function (){
		       $(this).bind('load', function(){
		        var imgH = $(this).height(); 
		        $(this).css('margin-top', (imgBoxH - imgH) / 2 + 'px');
		       }).attr('src', this.src);
		     });
		     
		  });
		}
});


