function mark(){
//mark site as visited
var today = new Date();
var expiry = new Date(today.getTime() + 1* 24 * 60 * 60 * 1000);
document.cookie = "skippy=true; expires=" + expiry.toGMTString();

}

function wrteIt(){
//write in flash content
cook=document.cookie
//window.status=cook)
if(cook.indexOf('skippy')!=-1){

	document.write('<img src="/img/headerImage.jpg" alt="Adams Consulting" />');

	skip=true;
}
else{
 var tag = new FlashTag('/flash/adams_flashHeader_final.swf', 740, 177, false); // last two arguments are height and width
    tag.setFlashvars('lcId='+uid);
    
    tag.write(document);
	skip=false;
}
  


}
