$(document).ready(function() {
	/*$("#stable_popup").mouseenter(function() { 
		$("#stable_popup").stop(true, true);
	});
	$("#sidebar_stable_link").mouseenter(function() { 
		$("#stable_popup").stop(true, true).animate({width: 'show', opacity: '1'}, 200);
	});
	$("#sidebar_stable_link").mouseleave(function() { 
		$("#stable_popup").stop(true, true).animate({width: 'hide', opacity: '0'}, 200);
	});*/
	
	$("#sidebar_stable_link").hover(function() 
	{ 
		$("#stable_popup").stop(true, true).animate({width: 'toggle', opacity: '1'}, 200);
	},
	function()
	{
		$("#stable_popup").stop(true, true).animate({width: 'toggle', opacity: '0'}, 200);
	});
	
	$("#sidebar_beta_link").hover(function() 
	{ 
		$("#beta_popup").stop(true, true).animate({width: 'toggle', opacity: '1'}, 200);
	},
	function()
	{
		$("#beta_popup").stop(true, true).animate({width: 'toggle', opacity: '0'}, 200);
	});

	//$("#sidebar").height($("#sidebar").parent().height() - 33);
	
	// "Coming soon" popup
	$(".coming_soon").mouseenter(function() { 
		//$(this).css({backgroundColor: '#ff0000'});
		
		$("#coming_soon_popup").fadeIn();
	});
});

