// --- This script rotates the 'featured case studies' in the right side bar --- \\

var title=new Array()
//insert here your featured case studies title
title[0]='Extend Oil Production Between Workover';
title[1]='Save SCADA Installation Costs';
title[2]='SilverJack Rental Service';
title[3]='Put Our Expertise to Work';
title[4]='Remote Oil Well Optimization';

var fact=new Array()
//insert here your featured case studies content
fact[0]='Reduce rod string wear with our rod rotation version of SilverJack.';
fact[1]='Reduce contractor time with a full-build Zedi SCADA installation tested and prepared before it hits the field.';
fact[2]='Get your oil well producing quickly with a low capital investment.';
fact[3]='Identify best operational practices with our in-house team of experts.';
fact[4]='Enhance performance while reducing site visits remotely with SilverJack.';

var hyperlink=new Array()
//insert here your featured case studies links
hyperlink[0]='More about SilverJack';
hyperlink[1]='More about Zedi SCADA';
hyperlink[2]='More about SilverJack';
hyperlink[3]='More about Zedi Consulting Services';
hyperlink[4]='More about SilverJack';

var href=new Array()
//insert here your featured case studies links
href[0]='http://www.zedi.ca/products_services/product-zedi-silverjack.asp';
href[1]='http://www.zedi.ca/products_services/product-zedi-scada.asp';
href[2]='http://www.zedi.ca/products_services/product-zedi-silverjack.asp';
href[3]='http://www.zedi.ca/solutions/zedi-consulting-services.asp';
href[4]='http://www.zedi.ca/products_services/product-zedi-silverjack.asp';

var xy=Math.floor(Math.random()*fact.length);
document.write('<h4>'+title[xy]+'</h4><p>'+fact[xy]+'<br /><a href="'+href[xy]+'">'+hyperlink[xy]+'</a></p>');
