// for live chat poup
$(document).ready(function() {
	$(".links").find("a").each(function() {
		if ( $(this).attr("href") == "class_live_chat.cfm") {
			$(this).attr("href", "class_live_chat_popup.cfm");
			$(this).popupWindow({
				width:screen.width,
				height:screen.height,
				centerBrowser:1,
				centerScreen:1,
				location:0,
				status:0,
				windowURL:'class_live_chat_popup.cfm',
				windowName:'chat' 
			});
		}
	});
	$("#chat").popupWindow({
		width:screen.width,
		height:screen.height,
		centerBrowser:1,
		centerScreen:1,
		location:0,
		status:0,
		windowURL:'class_live_chat_popup.cfm',
		windowName:'chat' 
	});
});
