/**
* Function file <Bioprotect>
* @author EGStudio
*/ 

function openWin(page, w, h){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=0,resizable=0,location=0,status=0,menubar=0,toolbar=0'
	win = window.open(page, "", winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

$(document).ready(function() 
{  
	$(function() {$('#content div.the-team ul li img').tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - ",
		fade: 250
		});
	});	
	
	$("h1, h2, h3, h4, h5").ieffembedfix();	
	$("div.inner-menu ul").children(":last-child").addClass("last");
	$("div.the-team ul li:nth-child(4n)").css({borderRight:"0"});
	$("div.the-team ul li:nth-child(4n)").css({borderRight:"0"});
	$("div.the-team ul li:nth-child(1)").css({paddingLeft:"0"});
	$("div.the-team ul li:nth-child(4n+1)").css({paddingLeft:"0"});
	
});

