var array_texts=new Array();

array_texts[0]="<br /><br /><font class=\"title1\">FEATURED PROJECTS</font><br /><font class=\"text_white\">................................................................................................</font><br /><div id=\"dif_text_container1\"><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_patelco.jpg\" width=\"112\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">PATELCO CREDIT UNION:</font><br /> <font class=\"text_white1\">See how we helped redisign<br /> and restructure the Patelco<br /> Credit Union site. We took their<br /> ROI into new places with this<br /> slick look and feel...</font><a href=\"\" class=\"link_orange2\">more ></a><br /><br /></div><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_lowepro.jpg\" width=\"111\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">LOWEPRO:</font> <font class=\"text_white1\">See how we<br /> helped redisign and restructure<br /> the Patelco Credit Union site.<br /> We took their ROI into new<br /> places with this slick look and<br /> feel...</font><a href=\"\" class=\"link_orange2\">more ></a></div></div>";

array_texts[1]="<br /><br /><font class=\"title1\">FEATURED PROJECTS1</font><br /><font class=\"text_white\">................................................................................................</font><br /><div id=\"dif_text_container1\"><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_patelco.jpg\" width=\"112\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">PATELCO CREDIT UNION:</font><br /> <font class=\"text_white1\">See how we helped redisign<br /> and restructure the Patelco<br /> Credit Union site. We took their<br /> ROI into new places with this<br /> slick look and feel...</font><a href=\"\" class=\"link_orange2\">more ></a><br /><br /></div></div>";

array_texts[2]="<br /><br /><font class=\"title1\">FEATURED PROJECTS2</font><br /><font class=\"text_white\">................................................................................................</font><br /><div id=\"dif_text_container1\"><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_patelco.jpg\" width=\"112\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">PATELCO CREDIT UNION:</font><br /> <font class=\"text_white1\">See how we helped redisign<br /> and restructure the Patelco<br /> Credit Union site. We took their<br /> ROI into new places with this<br /> slick look and feel...</font><a href=\"\" class=\"link_orange2\">more ></a><br /><br /></div><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_lowepro.jpg\" width=\"111\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">LOWEPRO:</font> <font class=\"text_white1\">See how we<br /> helped redisign and restructure<br /> the Patelco Credit Union site.<br /> We took their ROI into new<br /> places with this slick look and<br /> feel...</font><a href=\"\" class=\"link_orange2\">more ></a></div></div>";

array_texts[3]="<br /><br /><font class=\"title1\">FEATURED PROJECTS3</font><br /><font class=\"text_white\">................................................................................................</font><br /><div id=\"dif_text_container1\"><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_patelco.jpg\" width=\"112\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">PATELCO CREDIT UNION:</font><br /> <font class=\"text_white1\">See how we helped redisign<br /> and restructure the Patelco<br /> Credit Union site. We took their<br /> ROI into new places with this<br /> slick look and feel...</font><a href=\"\" class=\"link_orange2\">more ></a><br /><br /></div><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_lowepro.jpg\" width=\"111\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">LOWEPRO:</font> <font class=\"text_white1\">See how we<br /> helped redisign and restructure<br /> the Patelco Credit Union site.<br /> We took their ROI into new<br /> places with this slick look and<br /> feel...</font><a href=\"\" class=\"link_orange2\">more ></a></div></div>";

array_texts[4]="<br /><br /><font class=\"title1\">FEATURED PROJECTS4</font><br /><font class=\"text_white\">................................................................................................</font><br /><div id=\"dif_text_container1\"><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_patelco.jpg\" width=\"112\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">PATELCO CREDIT UNION:</font><br /> <font class=\"text_white1\">See how we helped redisign<br /> and restructure the Patelco<br /> Credit Union site. We took their<br /> ROI into new places with this<br /> slick look and feel...</font><a href=\"\" class=\"link_orange2\">more ></a><br /><br /></div><div class=\"sdif_text_container\"><img align=\"left\" class=\"icon\" src=\"include/image/bi_2ndlev_feat_i_lowepro.jpg\" width=\"111\" height=\"94\" border=\"0\" alt=\"\"  /><font class=\"title5\">LOWEPRO:</font> <font class=\"text_white1\">See how we<br /> helped redisign and restructure<br /> the Patelco Credit Union site.<br /> We took their ROI into new<br /> places with this slick look and<br /> feel...</font><a href=\"\" class=\"link_orange2\">more ></a></div></div>";


var current=0;
var max=4;

function next()
{
		var text=document.getElementById("text1");		
		if (current==max)
			current=0;
		else
			current++;
		text.innerHTML=array_texts[current];

}

function prev()
{
		var text=document.getElementById("text1");		
		if (current==0)
			current=max;
		else
			current--;
		text.innerHTML=array_texts[current];

}