// JavaScript Document
$(function() {
	//$('#wmtopmenu').load('chip/wmtopmenu.html');
	
	$('.join').click(function(){
		alert('影片徵選時間已結束，非常感謝您參與本活動，謝謝！');
		return false;
	});
	
	$('.plurk').click(function(){
		Id	=	$(this).attr('id');
		if(Id != ''){
			hit(Id);
		}
	});
	$('.twitter').click(function(){
		Id	=	$(this).attr('id');
		if(Id != ''){
			hit(Id);
		}
	});
	$('.facebook').click(function(){
		Id	=	$(this).attr('id');
		if(Id != ''){
			hit(Id);
		}
	});
	
	
	
	$('#footer').load('chip/foot.html');
});

function hit(Id){
	$.ajax({
		url: 'save.php?act=hit',
		type: 'post',
		dataType: 'json',
		data: {
			Key :'new',
			Id  : Id
		}
	});
}