$(document).ready(function() {
	//Light box for 'Contact Us' and 'Client Login' sections.
	var popup = '';
	$("a[rel]").click(function () {
		popup = $(this).attr('rel');
	});
	$("a[rel]").overlay({
		mask: {color: '#333',opacity: 0.8},closeOnClick: true,
		onBeforeLoad: function(){
			if (popup == '#contact') {
				$('.simple_overlay').css('margin-top', '57px');
				$('.simple_overlay').css('margin-left', '50px');
			}
			else {
				$('.simple_overlay').css('margin-top', '129px');
			}
		}
	});
	
	// 'Special' Mac styling... :/
	var userBrowser = navigator.userAgent.toLowerCase();
	var userOS = navigator.platform.toLowerCase();
	if (userOS.lastIndexOf("mac") == 0) {
		if (userBrowser.lastIndexOf("firefox") > 0) {
			$("#greenBackgroundPicture").css("margin-top","-6.5em");
			$(".send").css("margin-top","347px");
			$(".type").css("margin-top","-355px");
			$(".contact textarea").css("height","98px");
			$(".enter").css("margin-top","106px");
			$("#contactUsMsg").css("margin-top","346px");
			$("#mainMenu li").css("padding-bottom","6px");
			$("#ourFirmMenu li").css("padding-bottom","6px");
			$("#ourFirmMenu").css("margin-top","-138px");
			$("#footerInfoRight").css("margin-left","717px");
			$("#orangeBackground").css("margin-top","93px");
			$("#purpleBackground").css("margin-top","83px");
			$("#greenBackground").css("margin-top","169px");
			$("#blueBackgroundSlideShow").css("margin-top","169px");
			$("#yellowBackground").css("margin-top","108px");
			$("#tealBackground").css("margin-top","94px");
			$("#blue_bg_legal_Business").css("margin-top","94px");
			$("#yellowBackgroundContent").css("margin-top","-265px");
		}
		if (userBrowser.lastIndexOf("safari") > 0) {
			$("#greenBackgroundPicture").css("margin-top","-6.4em");
			$(".send").css("margin-top","358px");
			$(".enter").css("margin-top","114px");
			$("#footerInfoRight").css("margin-left","700px");
		}
	}	
});

