var br_options=new Array();var image_set_count=0;var total_images=new Array();var br_prev=new Array();var br_current=new Array();var br_next=new Array();var timerinterval=new Array();var links_css=new Array();$.fn.botrotate=function(b){var c="botrotate-"+image_set_count;$(this).attr("id",c);var a=new Object();if(b){if(!b.element){a.element=b.element}else{a.element=b.element}if(b.ease_speed>=0){a.time=1000*Number(b.time)}else{a.time=5000}if(!b.buttons){a.buttons=false}else{a.buttons=b.buttons}if(!b.button_type){a.button_type="LIST"}else{a.button_type=b.button_type}if(!b.transition){a.transition="FADE"}else{a.transition=b.transition}if(!b.ease_in){a.ease_in="easeInQuad"}else{a.ease_in=b.ease_in}if(!b.ease_out){a.ease_out="easeOutQuad"}else{a.ease_out=b.ease_out}if(b.ease_speed>0&&b.ease_speed!=undefined){a.ease_speed=1000*Number(b.ease_speed)}else{a.ease_speed=5000}}else{a.time=5000;a.buttons=false;a.button_type="LIST";a.transition="FADE";a.ease_in="easeInQuad";a.ease_out="easeOutQuad";a.ease_speed=1000}br_options[c]=a;$(this).createRotate()};$.fn.createRotate=function(){$(this).attr("class","botrotate");var f="botrotate-"+image_set_count;total_images[f]=$(this).find(br_options[f].element).length;br_prev[f]=total_images[f]-1;br_current[f]=0;br_next[f]=1;if(br_options[f].buttons==true){var b=$("<div>").attr({id:"botrotate_button_area-"+image_set_count,"class":"botrotate_button_area"});$(this).parent().append(b);if(br_options[f].button_type=="NEXTPREV"){var d=$("<div>").attr({id:"botrotate_button_prev","class":"botrotate_button_prev"});d.click(function(){$(this).rotate(f,"LEFT",1)});b.append(d);var d=$("<div>").attr({id:"botrotate_button_next","class":"botrotate_button_next"});d.click(function(){$(this).rotate(f,"RIGHT",1,false)});b.append(d)}else{if(br_options[f].button_type=="LIST"){var e=0;var a=true;$(this).find(br_options[f].element).each(function(){if(a){var g=$("<div>").attr({id:"botrotate_button-"+image_set_count+"-"+e,"class":"botrotate_button-"+e+" botrotate_button selected"}).html($(this).attr("title"));a=false;$(this).attr("title","")}else{var g=$("<div>").attr({id:"botrotate_button-"+image_set_count+"-"+e,"class":"botrotate_button-"+e+" botrotate_button"}).html($(this).attr("title"));$(this).attr("title","")}e++;g.click(function(){var h=$(this).attr("id").split("-");if(h[2]!=br_current[f]){$(this).rotate(f,"RIGHT",h[2],false)}});b.append(g)})}}}var c=0;$(this).children(br_options[f].element).each(function(){$(this).attr("id",f+"-"+c);c++});$(this).children(br_options[f].element).css({position:"absolute",display:"none"});$(this).find(br_options[f].element+":first").css({display:"block"});if(br_options[f].time>0){timerinterval[f]=setInterval("$(this).rotate('"+f+"', 'RIGHT', 0, true)",br_options[f].time)}image_set_count++};$.fn.rotate=function(g,b,a,f){var d=g.split("-");var c="#"+g+"-"+br_current[g];if(a>=0){if(br_options[g].time>0){clearInterval(timerinterval[g]);timerinterval[g]=setInterval("$(this).rotate('"+g+"', '"+b+"', 0, '"+f+"')",br_options[g].time)}}if(br_options[g].button_type=="LIST"&&f==false){if(a<br_current[g]){b="LEFT"}else{b="RIGHT"}if(b=="LEFT"){if(a>0){br_prev[g]=a}else{br_prev[g]=0}br_next[g]=a}else{if(a<total_images[g]-1){br_next[g]=Number(a)}else{br_next[g]=total_images[g]-1}br_prev[g]=a}}if(b=="LEFT"){var e="#"+g+"-"+br_prev[g];if(br_options[g].button_type=="LIST"){$("#botrotate_button-"+d[1]+"-"+br_current[g]).removeClass("selected");$("#botrotate_button-"+d[1]+"-"+br_prev[g]).addClass("selected")}}else{var e="#"+g+"-"+br_next[g];if(br_options[g].button_type=="LIST"){$("#botrotate_button-"+d[1]+"-"+br_current[g]).removeClass("selected");$("#botrotate_button-"+d[1]+"-"+br_next[g]).addClass("selected")}}if(br_options[g].transition=="FADE"){$(c).fadeOut(br_options[g].ease_speed);$(e).fadeIn(br_options[g].ease_speed)}else{if(b=="LEFT"){$(c).animate({left:"+="+$(e).width()+"px"},br_options[g].ease_speed,br_options[g].ease_in,function(){$(this).css({display:"none",left:"-"+$(c).width()+"px"})});$(e).css({display:"block",left:"-"+$(e).width()+"px"});$(e).animate({left:"+="+$(e).width()+"px"},br_options[g].ease_speed,br_options[g].ease_out)}else{$(c).animate({left:"-="+$(e).width()+"px"},br_options[g].ease_speed,br_options[g].ease_in,function(){$(this).css({display:"none",left:"-"+$(c).width()+"px"})});$(e).css({display:"block",left:$(e).width()+"px"});$(e).animate({left:"-="+$(e).width()+"px"},br_options[g].ease_speed,br_options[g].ease_out)}}if(b=="RIGHT"){br_prev[g]=br_current[g];br_current[g]=br_next[g];if(br_next[g]<total_images[g]-1){br_next[g]++}else{br_next[g]=0}}else{br_next[g]=br_current[g];br_current[g]=br_prev[g];if(br_prev[g]>0){br_prev[g]--}else{br_prev[g]=total_images[g]-1}}};
