$(document).ready(function(){
		
		var $clicked = null;
		
		$('a').live('click', ow_pop);
		
		function ow_pop() {
			
			$clicked = $(this);
			
			$().bind('cbox_closed', function() { if ($clicked.attr('href') && window) window.location = $clicked.attr('href'); });
			
			$('a').die('click', ow_pop);
			
			// Check if modal has been seen within a week
			if ($.cookie('ow_popnum') == null) {
				// Check if we can store cookies, and update cookie at same time
				$.cookie('ow_popnum', '1', {expires: 7});
				
				if ($.cookie('ow_popnum') == null) return true;
				
				$.fn.colorbox({ initialWidth:"450px",
							 initialHeight:"350px",
							 width: "640px",
							 inline:true,
							 href:"#signup_modal",
							 speed:300,
							 opacity:0.4,
							 open: true,
							 overlayClose:true
							});
			}
			return false;
		}
});
