﻿/* * 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! */		var theInt = null;		var $crosslink, $navthumb;		var curclicked = 0;				theInterval = function(cur){			clearInterval(theInt);						if( typeof cur != 'undefined' )				curclicked = cur;						$crosslink.removeClass("active-thumb");			$navthumb.eq(curclicked).parent().addClass("active-thumb");				$(".stripNav ul li a").eq(curclicked).trigger('click');						theInt = setInterval(function(){				$crosslink.removeClass("active-thumb");				$navthumb.eq(curclicked).parent().addClass("active-thumb");				$(".stripNav ul li a").eq(curclicked).trigger('click');				curclicked++;				if( 6 == curclicked )					curclicked = 0;							}, 3000);		};/* JQUERY *****************************************************************************************************/$(function(){	$('img[@src$=.png]').ifixpng(); 		$('.logo').animate({top:'7px'},{opacity: 1.0}, { duration: "normal", easing: "easein", queue: false  });	$('.logo').hover(			function () {				$(this).animate({top:'10px'},100);			},			function () {				$(this).animate({top:'7px'},50);			}    );				$("#main-photo-slider").codaSlider();						$navthumb = $(".nav-thumb");			$crosslink = $(".cross-link");						$navthumb			.click(function() {				var $this = $(this);				theInterval($this.parent().attr('href').slice(1) - 1);				return false;			});						theInterval();	// anti spam mail	anti_spam(".mailto","Web Site / İletişim");	$('img[@src$=.png]').ifixpng();});// 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); 			}		});	} 
