
// gFly Rotator v2.2009.12.02
// Grendelfly Studio - www.grendelfly.com
// Needs JQuery: jquery-1.3.2.min.js


$(function(){$(document).ready(function(){$('#gFly_Rotr').css({'height':'200px','margin':'0px','padding':'0px','position':'relative','overflow':'hidden'});$("img#fwd").click(function(){var c=$("#gFly_Rotr div").length;c=c-1;var d=$('#gFly_Rotr_Stats').html();d=parseInt(d)+1;if(d>c){d=0};$('#gFly_Rotr div').hide();$("#gFly_Rotr div").each(function(a,b){if(a==d){$(b).fadeIn(300);$('#gFly_Rotr_Stats').html(parseInt(d));return false}})});$("img#bck").click(function(){var c=$("#gFly_Rotr div").length;c=c-1;var d=$('#gFly_Rotr_Stats').html();d=parseInt(d)-1;if(d<0){d=c};$('#gFly_Rotr div').hide();$("#gFly_Rotr div").each(function(a,b){if(a==d){$(b).fadeIn(300);$('#gFly_Rotr_Stats').html(parseInt(d));return false}})})});$(document).ready(function(){setInterval(function(){fRotate()},10000);function fRotate(){var c=$("#gFly_Rotr div").length;c=c-1;var d=$('#gFly_Rotr_Stats').html();d=parseInt(d)+1;if(d>c){d=0};$('#gFly_Rotr div').hide();$("#gFly_Rotr div").each(function(a,b){if(a==d){$(b).fadeIn(300);$('#gFly_Rotr_Stats').html(parseInt(d));return false}})}})});