
function emailReplace(el){addy=el.innerHTML.replace(/\[ ?at ?\]/g,'@');addy=addy.replace(/ /g,'');addy=addy.replace(/\[ ?dot ?\]/g,'.');var link=document.createElement('a');if(el.title&&el.title!=''){link.title=el.title;link.title=link.title.replace(/\[email\]/g,addy);}
link.href='mailto:'+addy;link.innerHTML=addy;el.innerHTML='';el.appendChild(link);}
var slider={imgPath:'images/slider/',images:[['0.jpg','Ute Bonnet'],['1.jpg','Ute Door'],['2.jpg','Glass Office Door'],['3.jpg','Tailgate'],['4.jpg','Building Sign'],['5.jpg','SSS Printing Building'],['6.jpg','Doorway']],loaded:{0:true},init:function(){var imgEl=$('#slider img')[0];var imgObject=new Image();var current=0;var next=1;var count=this.images.length;setInterval(function(){var data=slider.images[current];imgEl.src=slider.imgPath.concat(data[0]);imgEl.alt=data[1];if(slider.loaded[next]==undefined&&slider.images[next]){imgObject.src=slider.imgPath.concat(slider.images[next][0]);slider.loaded[next]=true;}
current++;next=current+1;if(current==count){current=0;next=1;}},5500);}};var mailing={init:function(){$('#mailingListForm').bind('submit',function(ev){var name=$('#name')[0].value;var email=$('#email')[0].value;var errors=[];if(name.toLowerCase()=='your name'||name==''){errors.push('Please enter your name');}
if(email.toLowerCase()=='your email'||email==''){errors.push('Your email address is required');}
else if(email.search('@')==-1){errors.push('Invalid email address');}
if(errors.length>0){alert(errors.join("\r\n"));return false;}
var data={ajax:1,name:name,email:email};var callback=function(resp,textStatus){if(textStatus=='success'){$('#subscribeHeading').text('Thank You!');$('#mailingListForm')[0].style.display='none';$('#subscribe').addClass('complete');}};$().ajaxError(function(event,request,settings){alert(request.responseText);});var request=$.post('join.php',data,callback);return false;});}};var report={init:function(){$('#report_form').bind('submit',function(ev){var errors=[];var name=$('#report_name')[0].value;if(name==''){errors.push('your name is required');}
else if(name.length<3){errors.push('please enter your full name');}
if($('#report_company')[0].value==''){errors.push('please enter your company name');}
var email=$('#report_email')[0].value;if(email==''){errors.push('email address is required');}
else if(email.search('@')==-1){errors.push('invalid email address');}
var phone=$('#report_phone')[0].value;phone=phone.replace(/[^0-9]/g,'');if(phone==''){errors.push('phone number is required');}
else if(phone.length<10){errors.push('please enter your full phone number, including area code');}
if($('#report_postal')[0].value==''){errors.push('please enter your postal address');}
if(errors.length>0){alert(errors.join("\n"));return false;}});}};$(document).ready(function(){var emails=$('li.emailReplace, span.emailReplace');for(i=0;i<emails.length;i++){emailReplace(emails[i]);}
if($('#mailingListForm')[0]){mailing.init();}
if($('#slider')[0]){slider.init();}
if($('#report_form')[0]){report.init();}});