
$(document).ready(function() 
{
	$(".newsbytes").click(function() 
	{
		if($(".content_right_home").length !=0)
		{
			$(".content_right_home").fadeTo(500, 0.30, function() 
			{
				$(".news_popup").fadeIn(500, function() 
				{
					if ($.browser.msie)
					this.style.removeAttribute('filter');
				});
			});
		}
		else
		{
			$(".news_popup").fadeIn(500, function() 
			{
				if ($.browser.msie)
				this.style.removeAttribute('filter');
			});
		}
	});

	
	$(".close_button").click(function() 
	{
		$(".news_popup").fadeOut(500, function() 
		{
			$(".content_right_home").fadeTo(500, 1, function() 
			{
				if ($.browser.msie)
				this.style.removeAttribute('filter');
			});
		});
	});
});


