// JavaScript Document

// When the page is ready
$(document).ready(function(){
	//open outside links in a new page
	$('a[href^="http://"]').attr('target','_blank');
	
	
	
	//for lightbox
	$("a.lightbox").lightBox();
	
	//for spam shield
	$('a.spamshield').nospam();
	

	
});
	
