$(document).ready(function(){
	$("a").click(function(){
		if(!$(this).hasClass('video-link'))
		{
			var current = window.location.host;
			var pending = this.hostname;
			
			//
			var match = current.search(/www./i);
			if(match== -1){
				//current="www."+current;
			}
			//alert(current+"="+pending);
			if (current != pending) {
				// create a jQuery object using the current DOM element
				$(this).colorbox({title: function(){
				    	var url = $(this).attr('href');
				    	var title=$(this).attr('title');
				    	if(title == ''){
				    		title=url;
				    	}
				    	return '<a href="'+url+'" style="color:#DD0000;">Click here to continue to '+title+'</a>';
					},
					html:'<div style="padding:10px;"><h2 style="margin-bottom:8px;">You are now leaving LegacyG.com</h2><hr class="divider" style="margin:10px 0; padding:0; border-width:1px;"/><h3><b>Disclaimer</b></h3><p>The Legacy Group is not responsible for the content of this external site and does not monitor other Web sites for accuracy.</p><p><strong>In addition:</strong> this link will take you to a Web site that may have different privacy, security, and accessibility policies than the The Legacy Group\'s web site.</p><p>This link does not imply endorsement or support of any programs, products, or services.</p></div>',
					width:650
				});
			}
		}
	});
})
