// JavaScript Document
$(document).ready(function() {

	// Set the 'newWindow' class to open links in new windows
	$('a.newWindow').click(function(){
		window.open(this.href,'newWindow','location=1,menubar=1,toolbar=1,status=1,scrollbar=1,resizable=1,width=800,height=600');
		return false;
	})
});
