
$(document).ready(init);
var content;
function init(){
	$('.emailTool').click(onEmailClick);
	$('#email-to').defaultValue('joe@hotmail.com');
	$('#email-from').defaultValue('Your email address');
	$('#send').click(sendEmail);
	//$('.emailTool').hide();
	highlightDay();
}

function onEmailClick(){
	$('#modal').modal();
	content = $(this).parents('div.cont');
	$('#email-info').html("Your email will contain information on " + content.attr('id') + " and a link to this page. We do not collect or save email addresses.");
}

function sendEmail(){
	var to = $('#email-to')[0].value;
	var send = content.html();
	send = send.replace('Email this info', '');
	$.post('/scripts/send_email.php', {to:to, body:send}, onMailSend);
	$.modal.close();
}

function onMailSend(data){	
	alert('Your email has been sent');
}

function highlightDay(){
	var date = new Date();
	var days = new Array('sun', 'mon', 'tue', 'wed', 'thr', 'fri', 'sat');
	var d = date.getDay();
	var day = days[d];
	$('tr.'+day).addClass('activeDay');
}