$(document).ready(function(){
						   
	// Auto-detect Screen Resolution
	var user_res = String(screen.width) + String(screen.height);
	if($("#wallpapers form select option[@value='"+user_res+"']").val() != undefined ){
		$("#wallpapers form select").attr('value',user_res);
		$("#wallpapers form option:selected").append(" (detected) ");
	}
	
	
	// Wallpaper download
	$("#wallpapers form").submit(function(){
		var url = "/php/download.php/images/wallpaper/";
		var res = $("select", this).val();
		var image = $("select", this).attr('name');
		
		if( (res != '') && (image != '') ){
			$(this).attr('action', url + res + '_' + image + '.jpg');
			if(agree()){
				return conversion('wallpaper');
			}else{
				return false;
			}
		}else{
			return false;
		}								  
	});
	
});