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