$(document).ready(function(){displayGallery(product1,product2)});function displayGallery(B,A){$.ajax({type:"GET",url:"/controllers/__HomepageGalleryData.php",data:"product1="+B+"&product2="+A,dataType:"xml",success:function(I){var D="";var L="";var H="";var C="";var E="";var F="";$("#homepage_gallery_placeholder").hide();$("#homepage_gallery_placeholder").parent().append('<div id="cycle_right"><img src="/images/cycle_right.gif" alt="Right" width="30" height="30" /></div>');$("#homepage_gallery_placeholder").parent().append('<div id="cycle_right_disabled"><img src="/images/cycle_right_disabled.gif" width="30" height="30" /></div>');$("#homepage_gallery_placeholder").parent().append('<div id="cycle_left"><img src="/images/cycle_left.gif" alt="Left" width="30" height="30" /></div>');$("#homepage_gallery_placeholder").parent().append('<div id="cycle_left_disabled"><img src="/images/cycle_left_disabled.gif" width="30" height="30" /></div>');$("#homepage_gallery_placeholder").parent().append('<div id="cycle_top_franchises"></div>');var G=0;var J='<div class="cycle_page">';var K="";$(I).find("productinfo").each(function(){D=$(this).find("productlogo").text();L=$(this).find("productname").text();H=$(this).find("productlink").text();C=$(this).find("producttitle").text();E=$(this).find("productblurb").text();F=$(this).find("productreadmore").text();L=L.replace(/www./ig,"");E=E.replace(/www./ig,"");K+='<div class="dom_homepage_businesscard">';K+='<p align="center">';K+='<a title="'+C+'" href="'+H+'">';K+='<img width="120" height="51" alt="'+C+'" src="'+D+'" />';K+="</a>";K+="</p>";K+='<p align="center">';K+='<a title="'+C+'" href="'+H+'">'+L+"</a>";K+="</p>";K+='<p align="left">';K+=E+' <a title="'+C+'" href="'+H+'">'+F+"</a>";K+="</p>";K+="</div>";G++;if(G%4==0){$("#cycle_top_franchises").append(J+K+"</div>");K=""}})},complete:function(){onLoadGallery()}})}function onLoadGallery(){$("#cycle_top_franchises").cycle({fx:"scrollHorz",prev:"#cycle_left",next:"#cycle_right",slideExpr:"div.cycle_page",timeout:10000,pause:1,speed:1800,autostop:1,after:onAfter});$("#cycle_left img").hover(function(){$(this).attr({src:"/images/cycle_left_active.gif"})},function(){$(this).attr({src:"/images/cycle_left.gif"})});$("#cycle_right img").hover(function(){$(this).attr({src:"/images/cycle_right_active.gif"})},function(){$(this).attr({src:"/images/cycle_right.gif"})})}function onAfter(D,B,C,A){if(C.currSlide<=0){$("#cycle_left").hide();$("#cycle_left_disabled").show()}else{$("#cycle_left").show();$("#cycle_left_disabled").hide()}if(C.currSlide==C.slideCount-1){$("#cycle_right").hide();$("#cycle_right_disabled").show()}else{$("#cycle_right").show();$("#cycle_right_disabled").hide()}};