$(document).ready(function()
{	
	$("#newsletter").click(function(e)
	{
		e.preventDefault();
		var $width = 370;
		var $height = 450;
		$content = "http://oztyle.com/newsletter.php";
		$get = $(this).attr("href");
		
		if(browser != "ie6")
		{
			$player = "iframe";
			Shadowbox.open(
			{
				content:	$content+$get,
				player:		$player,
				title:		" ",
				height:		$height,
				width:		$width
			});
		}
		else
		{
			window.open($content+$get, "Newsletter","menubar=no, status=no, scrollbars=no, menubar=no, width="+$width+", height="+$height);
		}
		
    });
	$(".newsletter").click(function(e)
	{
		e.preventDefault();
		var $width = 370;
		var $height = 450;
		$content = "http://oztyle.com/newsletter.php";
		$get = $(this).attr("href");
		
		if(browser != "ie6")
		{
			$player = "iframe";
			Shadowbox.open(
			{
				content:	$content+$get,
				player:		$player,
				title:		" ",
				height:		$height,
				width:		$width
			});
		}
		else
		{
			window.open($content+$get, "Newsletter","menubar=no, status=no, scrollbars=no, menubar=no, width="+$width+", height="+$height);
		}
		
    });


});