﻿$(function(){
	$('#software a img').hover(
		function(){
			$('#slogan').html($(this).attr('alt'));
		},
		function(){
			$('#slogan').html('Voice Communication for Gamers');
		}
	);	
	
	$('.price-chart').hover(
		function(){
			$(this).find('.prices').slideToggle();
		},
		function(){
			$(this).find('.prices').slideToggle();
		}
	);
	
	if($('#account-name, #account-password').length){
		$('#account-name, #account-password').change(function(){
			$('#login-button').css('visibility','visible');
		});
	}

	if($('#link-with-cookie').length){
		$('a[href^=https://cp.light-speed.com]').each(function(){
			$(this).attr('href','javascript: void linkWithCookie(\''+$(this).attr('href')+'\')');
		});
	}	
});

function linkWithCookie(url){
	$('#link-with-cookie').attr('action',url);
	try{
		_gaq.push(['_linkByPost',document.getElementById('link-with-cookie')]);
	}
	catch(e){
		//we don't want the page to crash just because the tracker wasn't loaded
	}
	$('#link-with-cookie').trigger('submit');
}

function openChat(){
	window.open('https://cp.light-speed.com/live_chat/live_chat.php?DOMAIN=instantventrilo.com','Live_Chat_Client','menubar=0,resizable=1,width=740,height=458');
}
