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