﻿$(document).ready( function init() {
	initEvent();
});

function initEvent() {
    $('a').each(function() {
    	var h = $(this).html();
    	if(h != undefined) {
    		if(	h == '1024x768' ||
    			h == '1280x800' ||
    			h == '門市外賣單下載' ||
    			h == 'Starbucks景點門市') {
				$(this).click(function(e) {
					download(this.href);
				});
    		}
    	}
    });
}

function download(obj) {
	var reqUrl = '/coffee/urlCtr.serx';
	if(obj.indexOf("https") > -1)
		reqUrl = '/member/urlCtr.serx';
	$.ajax({
	    url: reqUrl,
	    data: {url: obj},
	    error: 	function(xhr) {	},
	  	success:function(resp) {
			setTimeout(function(){}, 5000);
		}
	 });
}
