$(document).ready(function() {
  $.cookie('visited_once', 'true', { expires: 365, path: '/', domain: 'maxidcorp.com', secure: true })
  //$(".document_button").corner("5px");
  //$(".side_divider").corner("5px");
  
  if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
	 $("#thebannerimage").show();
	 $("#thebannerflash").hide();
  } else {
	 $("#thebannerimage").hide();
	 $("#thebannerflash").show();
  }
});