﻿/* * Coder: Abdullah Tekin * ============================================ * * Copyright (c) by Abdullah Tekin (tekinonline@hotmail.com) * http://www.phpsistem.com * http://www.abdullahtekin.com * http://www.sanalkurs.net * * Her Hakkı Saklıdır, İzinsiz Kullanılamaz! *//* JQUERY *****************************************************************************************************/// ANTİ SPAMfunction anti_spam(sinif, konu) {	$(sinif).click(function(e)	{		a = $(this).attr("href");		a = a.replace("#", "").replace("|", "@");		document.location = "ma"+"il"+"to:"+a+"?subject=" + konu;		return false;	});}// HABER SAYFA GÖSTER	function urun_sayfa(id) {		$(".urun_liste").html('').fadeOut('fast');		$('.loading_2').show();			$.ajax({			type: "GET",			url: "ajax/urun_sayfa.php?sayfa="+ id, 			success: function(msg) {				$('.loading_2').hide();				$(".urun_liste").fadeIn('slow').html(msg); 			}		});	} // ALBUM SAYFA GÖSTER	function albumsayfa(no) {				$("#album-kapsa").hide();					$.ajax({			type: "GET",			url: "ajax/apage.php?sayfa="+ no, 			success: function(msg) {				$("#album-kapsa").animate({height: 'toggle', opacity: 'toggle'}, "normal").html(msg); 			}		});	} 