// Initializes User Scripts:

$(document).ready(function() {
	
	//Initialize the Menu:
	startMenu();
	startMenu2();
	
	// Footer Links - pop up in new window / tab:
	$('div#footLogos a').click(function() {
		window.open($(this).attr("href"),'window2', '');
		return false;
	});
	
});