$(document).ready(function() {	interval_function = function(){		var ths = $("#picture_pages a.active");		var next = ths.next();		if (next.length == 0)			next = $("#picture_pages a").first();					$(".project_image_link img").attr("src",next.attr("rel"));		ths.removeClass("active");		next.addClass("active");	}	   if ($("#picture_pages").length > 0){	var interval = setInterval(interval_function, 3000);   }   $('#project_image a').live('click', function() {	  var ths = $("#picture_pages a.active");		var next = ths.next();		if (next.length == 0)			next = $("#picture_pages a").first();					$(".project_image_link img").attr("src",next.attr("rel"));		ths.removeClass("active");		next.addClass("active");		return false;  });  $('#project_image a').hover(function () {        clearInterval(interval);    }, function () {        interval = setInterval(interval_function, 3000);    });    $('#picture_pages a').live('click', function() {	  var ths = $("#picture_pages a.active");		var next = $(this);					$(".project_image_link img").attr("src",next.attr("rel"));		ths.removeClass("active");		next.addClass("active");		return false;  }); });
