function GetOS()
{
	if (navigator.platform.toLowerCase().indexOf("win") > -1)
		return "windows";
	else if (navigator.platform.toLowerCase().indexOf("mac") > -1)
		return "mac";
	else if (navigator.userAgent.toLowerCase().indexOf("ipod") > -1 || navigator.userAgent.toLowerCase().indexOf("iphone") > -1 || navigator.userAgent.toLowerCase().indexOf("ipad") > -1 || navigator.userAgent.toLowerCase().indexOf("android") > -1)
		return "mobile";
	else if  (navigator.platform.toLowerCase().indexOf("linux") > -1)
		return "linux";
	else
		return "windows";
}

function SetDownloadUrls(macQS)
{
	try
	{
		var os = GetOS();
		if(os == "mac")
		{
			document.getElementById("dlQS").href = macQS;	
		}
	} catch(e){}
}


$(document).ready(function() {

	SetDownloadUrls("/fileadmin/downloads/TeamViewerQS.dmg");
							
	jQuery('#supportButton').click(function() {
	  jQuery("#top_support").toggle('blind', function() {
	    // Animation complete.
	  });
	});
	
});
