function openDLBox(platform)
{
	var alt = (platform == 'mac') ? 'windows' : 'mac';
/*
	var html = '<div class="dlbox" style="display:none;"><a class="close" href="javascript:closeDLBox();"></a><p class="note">YOUR DOWNLOAD HAS STARTED</p><div class="' + platform + '"></div><p class="alt">You are downloading the ' + platform.charAt(0).toUpperCase() + platform.slice(1) + '<br />version of Lock Casino.<br/><br/>To download the ' + alt.charAt(0).toUpperCase() + alt.slice(1) + ' version, <a href="/download/' + alt + '">click here</a>.</p></div>';
	$('body').append(html);
	$('.dlbox').fadeIn();
*/
}

function closeDLBox()
{
	$('.dlbox').fadeOut();
}

$(function(){
	var platform = 'windows';
	if(navigator.platform.match('Mac')) {
		$('nav a.download').attr('href', '/download/mac');
		platform = 'mac';
	}
	
	$('nav a.download').click(function() {
		openDLBox(platform);
	});
});

(function(){if(!/*@cc_on!@*/0)return;var e = "abbr,article,aside,audio,canvas,datalist,details,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})();