$(document).ready(function(){
	$('div.vcard:eq(0)').addClass('firstchild');	
	$('div#vcards').accordion({
		header: '.info',
		autoheight: true,
		alwaysOpen: false,
		active: false
	});
	$('a.email').click(function(){
		var link = this.href;	
		open(link);		
		return false;
	});
});
