




jQuery(document).ready(function(){
	
	////
	// add '_blank' to external links
	//
		$('a[href^="http://"]:not([href*="'+location.hostname+'"])').each(function() {
		var orgTitle = $(this).attr("title");
		 $(this).attr({target: "_blank", title: orgTitle+" [new window]"});
		 $(this).append('<span class="out">^</span>');
		 });
			///
	// form validation
	//
		$("#eoiform").validate({
		  		  		});
		
});

