jQuery(document).ready(function() {
	var d = new Date();
	var today = d.getMonth()+'/'+d.getDate()+'/'+d.getFullYear();
	if(jQuery.cookie('date') != today) {
		jQuery.cookie('date', today, {path: '/', expires: 1})
		jQuery("#autostart").fancybox({frameWidth: 500, frameHeight: 450}).trigger('click');
	}
});