// Announcement system (js)

var ann_msg = "We're testing <b>videos</b>. Record LIVE on your webcam now. The best gets $50 from me. Here's a <a href=\"/photos/view/161824\">sample</a>. <a href=\"/photos/record\"><b>Record yours here</b></a>.";

// Hide the notice
function ann_hide_notice() {
	$('#ann_notice1').hide('slow');
	$('#ann_notice1').html('');
	createCookie('ann_hide_notice', 'ok', 3);
	return false;
}


// Code to display announcement
if (!readCookie('ann_hide_notice')) {
	// Look at http_referer
	if (document.referrer && document.referrer != '') {
		if (document.referrer.indexOf('funadvice.com') == -1) {
			// its external
		} else {
			// so lets show the notice
			$('#ann_notice1').html('<b>NOTICE:</b> ' + ann_msg + ' &nbsp; <small>[<a href="#" onClick="ann_hide_notice(); return(false);">close</a>]</small>');
			$('#ann_notice1').show();
		}
	}
}



