$(document).ready(function(){
	$("#revealEmailSignUp").bind( "mouseover", function() {
		//$("#emailSignUpCont").show();
	});
	$("#emailSignUpCont").bind( "mouseout", function() {
		//$(this).hide();
	});
	
	$("#emailSignUpCont .close").bind( "click", function() {
		$(this).parent().hide();
		return false;
	});
	
	$("#revealEmailSignUp").bind( "click", function() {
		$("#emailSignUpCont").show();
		return false;
	});	
	$("#news").bind("load", function(){
/*
		frame = this;
		innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
		objToResize = (frame.style) ? frame.style : frame;
		objToResize.height = innerDoc.body.scrollHeight + 10;
*/
	});
	
	$(".bioLink a").bind("click", function() {
		$(this).siblings("span").toggleClass("active");
		return false;
	});
});
