// JavaScript Document

$(function(){
	$('body').addClass((UserAgent.isTouchDevice()) ? 'isTouchDevice' : 'nonTouchDevice');
	$('img').each(function(){$(this).attr("title","")});
});
function subscribe() {	
	$("div.subscribe").dialog({title:"Subscribe",resizable:false});	
}
function subscribeSubmit(){
	var email= $("div.subscribe input[name=email]").val().toString();
	var ok = /^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/.test(email);	
	if (!ok) {
		$("div.subscribe p").removeClass("hide");
	} else {
		$("div.subscribe").dialog("destroy");
		var opt ={}
		opt["url"] = '/subscribe.php?email=' + email;
		opt["dataType"]="text";
		opt["error"]=function(){		
			alert("error on subscribe!");			
		}
		opt["success"]=function(msg){	
			if (msg=="ok") {
				//alert("Thank you for subscribing!");
				$('.popupMsg').dialog({title:"Success!",resizable:false});
			} else {
				alert(msg);
			}
		}
	}
	$.ajax(opt);	
}
