$(document).ready(function()
{
	// Livechat button animation
	var animate_livechat_button = function()
	{
		$('#LivechatButton img').animate({opacity: 0.8}, 200, function()
		{
			$(this).animate({opacity: 1}, 200, function()
			{
				$(this).animate({opacity: 0.8}, 200, function()
				{
					$(this).animate({opacity: 1}, 200);
				});
			});
		});
	};
	setInterval(animate_livechat_button, 8000);


	// Customers logos on homepage
	if ($('body#home').length)
	{
		var animate_customers = function()
		{
			$('p.customers img.in').fadeOut(function()
			{
				$('p.customers img.out').fadeIn().removeClass('out').addClass('in');
				$(this).removeClass('in').addClass('out');
			});
		};

		setInterval(animate_customers, 4000);
	}

	// Product bubble in subnav for "products" page
	$('#subnav .choose > span').mouseenter(function()
	{
		$(this).parent().find('ul').hide().removeClass('hidden').slideDown('fast').mouseleave(function()
		{
			$(this).slideUp('fast');
		});
	});
});