$(document).ready(function(){
$("a#hepsu").click(function () {
ajaxsayfa('http://www.bicumle.net/cumleyorumlar_.php?cumleid=95567', 'cumleyorumlar');
});
$("a#ahepsu").click(function () {
ajaxsayfa('http://www.bicumle.net/cumleyorumlar_.php?cumleid=95567', 'cumleyorumlar');
});
$("a.iframe").fancybox({ 'hideOnContentClick': false,'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true,'frameWidth':300,'frameHeight':200 });
$("a#sikayet").fancybox({ 'hideOnContentClick': false,'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true,'frameWidth':300,'frameHeight':200 });
$("a#sil").fancybox({ 'hideOnContentClick': false,'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true,'frameWidth':300,'frameHeight':200 });
$('a#up').click( function(){
$deger=$('strong#puan').text();$degeri=$deger*1+1;
$('strong#puan').text($degeri);$('div#oylama').html('
'+$degeri+' puan');
$('a#up').remove();
$.post("http://www.bicumle.net/oylama.php", { olay: "puanartir",id: "95567", uye: "Ziyaretci" });
});
$('a#down').click( function(){
$deger=$('strong#puan').text();$degeri=$deger*1-1;
$('strong#puan').text($degeri);$('div#oylama').html('
'+$degeri+' puan');
$('a#down').remove();
$.post("http://www.bicumle.net/oylama.php", { olay: "puansil",id: "95567", uye: "Ziyaretci" });
});
$('a#favori').click( function(){
$.post("http://www.bicumle.net/oylama.php", { olay: "favori",id: "95567", uye: "Ziyaretci" });
$degerz=$('strong#favorik').text();$('strong#favorik').text($degerz*1+1);
$('div#favoriekle').html('
Favori Sil');
});
$('a#favorisil').click( function(){
$.post("http://www.bicumle.net/oylama.php", { olay: "favorisil",id: "95567", uye: "Ziyaretci" });$degerz=$('strong#favorik').text();$('strong#favorik').text($degerz*1-1);
$('div#favoriekle').html('
Favorim Yap');
});
});