var url = window.location.href;
var title = encodeURIComponent(document.title);
$(function(){
$("#wechat").click(function(){
$("#share-qrcode").toggle(100,function(){
//alert($(this).is(":hidden"));
if($(this).is(":hidden")==false){
$(this).parent("a").addClass("active")
}else{
$(this).parent("a").removeClass("active")
}
});
})
$("#weibo").click(function(){
window.open('http://service.weibo.com/share/share.php?url=' + url + "&title=" + title);
})
$("#qzome").click(function(){
window.open('https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=' + url + "&title=" + title);
})
})