


$(function() {
	var ua =navigator.userAgent;
	if(ua.indexOf('iPhone') > -1 || ua.indexOf('iPad') > -1 || ua.indexOf('iPod')  > -1){
		var start = "touchstart";
		var move  = "touchmove";
		var end   = "touchend";
	}else{
		var start = "mousedown";
		var move  = "mousemove";
		var end   = "mouseup";
	}
	$("#smartTOP a").bind(end,function(e){
	$.cookie('cookieName', 'cookieValue', { path: '/', expires: 10 });
	})

	
	$("#pcTOP a").bind(end,function(e){
	$.cookie('cookieName', null, { path: '/', expires: 10 });
	})	

	
});
