$(document).ready(function(){
// start the cookie timer
	if ($.cookie('exp_bm_social') != '1') {
		setTimeout('pageTimer()', 40000);
	}
// close button
	$("#popup-close").click(function(){
		self.parent.tb_remove();
		return false;			
	});
// when someone clicks the reminder button, set the cookie to exire on browser close
	$("#popup-reminder").click(function(){
		$.cookie("exp_bm_social", '1');
		self.parent.tb_remove();
		return false;			
	});
// do some very basic form validation
	$('#popup-maillist').submit(function() {
		if( $("#popup-first-name").val()=='' || $("#popup-last-name").val()=='' || $("#popup-email").val()=='' || $("#popup-postal").val()==''){
			$("#popup-error").html('You must complete all fields!');
			return false;
		}else{
			$("#popup-error").html('Success');
				return true;
		}
	});
});
function pageTimer(){
	tb_show("","#TB_inline?height=430&width=800&inlineId=sn-popup","");
	$.cookie('exp_bm_social', '1', {expires: 365});
}




