/*
 * Mrrha 1.1
 *
 * Copyright (c) 2009 Mrrha
 */

$(document).ready(function() {
	/* Tahoma is not avaliable on Mac, and don't work probably outside Windows Office, so we define another font. */
	if(navigator.platform.indexOf('Mac') > -1) {
		$(document.body).css('font-family', 'Arial, Helvetica, "Al Bayan"');
	}

	/* generate corners */
	$('#container').corner({
		tl: { radius: 20 },
		tr: { radius: 20 },
		bl: { radius: 20 },
		br: { radius: 20 },
		antiAlias: true
	});

	$('#about').corner({
		tl: { radius: 10 },
		tr: { radius: 10 },
		bl: { radius: 10 },
		br: { radius: 10 },
		antiAlias: true
	});

	/* generate input type file style */
	$("input[type=file]").filestyle({
		image: 'images/browse.jpg',
		imagewidth: 92,
		imageheight: 42,
		width: 300
	});

	/* toggling mirrors */
	$('#slide-mirrors').click(function() {
		$('#mirrors').slideToggle('slow');
		return false;
	});

	/* on submit slide mirrors up if down */
	$('#upload_button').click(function() {
		if($('#tos').is(':checked')) {
			linkUpload();
		} else {
			alert("يجب ان توافق على شروط استخدام مراكز التحميل التي اخترتها");
		}
		return false;
	});

	/* show about */
	$('.discover').click(function() {
		$.blockUI({
			message: $('#about'),
			css: {
				border: '0',
				width: '50%',
				top: '10%',
				left: '25%',
				textAlign: 'right',
				cursor: 'default'
			}
		});

		$('#close-about').click(function() {
			$.unblockUI();
			return false;
		});

		return false;
	});
});
