function rand(){
    return Math.round(Math.random()*(css.length-1));
}

var css = new Array(
	'<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailsbrad.css">',
	'<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailsnora.css">',
	'<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailsdanielle.css">',
    '<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailssandy.css">',
	'<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailstracy.css">',
    '<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailskelley.css">',
	'<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailsshay.css">',
	'<link rel="stylesheet" type="text/css" href="http://www.minearrealestate.com/css/detailswayne.css">'
);

rand = rand();

document.write(css[rand]);


function emailBrad() {
  var messageText = 'Hello Brad, could you please contact me with more information about ' + window.location;
  var subjectText = 'Listing Info';
  var email = 'bradminear@minearrealestate.com';
  
  window.location = 'mailto:' + email + 
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
}
function emailNora() {
  var messageText = 'Hello Nora, could you please contact me with more information about ' + window.location;
  var subjectText = 'Listing Info';
  var email = 'noraferrell@minearrealestate.com';
  
  window.location = 'mailto:' + email + 
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);

}
function emailDanielle() {
  var messageText = 'Hello Danielle, could you please contact me with more information about ' + window.location;
  var subjectText = 'Listing Info';
  var email = 'daniellegenth@minearrealestate.com';
  
  window.location = 'mailto:' + email + 
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
}

function emailSandy() {
  var messageText = 'Hello Sandy, could you please contact me with more information about ' + window.location;
  var subjectText = 'Listing Info';
  var email = 'sandybenedict@minearrealestate.com';
  
  window.location = 'mailto:' + email + 
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);

}
function emailKelley() {
  var messageText = 'Hello Kelley, could you please contact me with more information about ' + window.location;
  var subjectText = 'Listing Info';
  var email = 'kelleystetler@minearrealestate.com';
  
  window.location = 'mailto:' + email + 
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);

}

function emailWayne() {
  var messageText = 'Hello Wayne, could you please contact me with more information about ' + window.location;
  var subjectText = 'Listing Info';
  var email = 'waynemiller@minearrealestate.com';
  
  window.location = 'mailto:' + email + 
      '?subject=' + encodeURIComponent(subjectText) +
      '&body=' + encodeURIComponent(messageText);
}
