$(document).ready(function() {
						   
	if ( $.cookie("cookie") != "visited-lbtllc" ) 
	{
		$(function() {
			setTimeout(function() {
				$.fn.colorbox({ href:"/popup.php", opacity: 0.4 });
				$.cookie("cookie", "visited-lbtllc",  { path: '/', expires: 1 });
			}, 5000);
		});
	} 

});
