$(document).ready(function(){
		$('div#wrapper').corner("30px");
	});

$(document).ready(function(){
		$('#slides').cycle({
			fx:		'fade',
			speed:	2500
		});
	});
 
/*
$(document).ready(function(){
 
	$(".menu a").append("<em></em>");
	
	$(".menu a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
	});
 
 
});
*/

// email address obfusication

function myMailto(user,host) {
	e = user + "@";
	for (i = 0; i < host.length - 1; i++) { e = e + host[i] + "."; }
	e = e + host[host.length - 1];
	document.writeln("<a href='mailto:" + e + "'>" + e + "</a>");
}

function openWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}