var more,less,iamwhatiam,iam_time,iam_to,iam_counter;iamwhatiam=new Array("Designer","Developer","Illustrator","Digital Artist");iam_time=2500;iam_counter=0;more='<a class="more">more &darr;</a>';less='<a class="less">less &uarr;</a>';$(document).ready(function(){iam_to=setTimeout(whatiam,iam_time);$('div.more').before(more);$('body').on('click','a.more',showMore);$('body').on('click','a.less',showLess);});function whatiam(){clearTimeout(iam_to);$('header address span').slideToggle(function(){$(this).html(iamwhatiam[iam_counter]).slideToggle();});if(iam_counter==iamwhatiam.length-1){iam_counter=0;}else{iam_counter++;}
iam_to=setTimeout(whatiam,iam_time);}
function showMore(){$(this).next('div.more').after(less).fadeIn();$(this).before(less);$(this).remove();}
function showLess(){$(this).parent('article').find('div.more').fadeOut().before(more);$(this).parent('article').find('a.less').remove();}
