//JQUERY FUNCTIONS

$('document').ready(function(){
	
	//Open links in new window
	$(function(){
		$('a.newWindow').click(function(){
			window.open(this.href);
			return false;
		});
	});
	
	
});





