$(function()
{
	if ($.browser.msie && $.browser.version == '6.0')
	{
		// ie6 is generally incompatible with most of the site global special effects...
	}
	else if ($.browser.msie && ($.browser.version == '7.0' || $.browser.version == '8.0')) 
	{
		$('#nflame_tab').mouseover(function()
		{
			$(this).stop().animate(
				{marginLeft:360},
				{duration:300,easing:'easeOutBack'});
			
		}).mouseleave(function()
		{
			$(this).stop().animate(
				{marginLeft:0},
				{duration:700,easing:'easeOutBounce'});
		});
	}
	else
	{
		nBubbles(50);
		$('#nflame_tab').mouseover(function()
		{
			$(this).stop().animate(
				{marginLeft:360},
				{duration:300,easing:'easeOutBack'});
			
		}).mouseleave(function()
		{
			$(this).stop().animate(
				{marginLeft:0},
				{duration:700,easing:'easeOutBounce'});
		});
		
		$('.tooltip').tooltip(
		{
			track:true,delay:0,fade:200,showURL:false,showBody:' - '
		});
	}
});
