function safemail(name, domain) {
	var addr = name + '@' + domain;
	document.write('<a href=mailto:' + addr + '>' + addr + '</a>');
}

var popUpWin=0;
function popUpWindow(URLStr, winWidth, winHeight) {
  if (popUpWin) {
    if(!popUpWin.closed) popUpWin.close();
  }
	winTop = ((screen.availHeight/2) - (winHeight/2)) - 25;
	winLeft = (screen.availWidth/2) - (winWidth/2);
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+winWidth+',height='+winHeight+',left='+winLeft+', top='+winTop+',screenX='+winLeft+',screenY='+winTop+'');
}

$(document).ready(function(){
	$("#resultMessage").fadeIn('slow').delay(1500).fadeOut('slow');
	$('#slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		height: 75,
		speed: 1000,
		timeout: 6000
	});
	// Dropdown menu
	$('.sf-menu')
		.supersubs({ 
			minWidth:    5,   
			maxWidth:    35,
			extraWidth:  1
		})
		.superfish({ 
			delay:       500,
			animation:   {opacity:'show',height:'show'},
			speed:       300,
			autoArrows:  false,
			dropShadows: true
		});
});
