var sDefaultEmailText = "Enter your email address here...";
$(function() {
  $('#hp-quote ul').cycle({  
  fx: 'scrollDown',
  speed: 800,
  timeout: 6000
  });
  
  $('#email-address').val(sDefaultEmailText);
  $('#email-address').focus(function() {
    if($(this).val() == sDefaultEmailText) {
      $(this).val('');
    }
  });
  $('#email-address').blur(function() {
    if($(this).val() == '') {
      $(this).val(sDefaultEmailText);
    }
  });  
  
});


$(function() {
if( navigator.userAgent.match(/Android/i) ||
 navigator.userAgent.match(/webOS/i) ||
 navigator.userAgent.match(/iPhone/i) ||
 navigator.userAgent.match(/Mobile/i) ||
 navigator.userAgent.match(/Smartphone/i) ||
 navigator.userAgent.match(/iPod/i)
 ){
 return;
}    
  $('a[rel=media]').media({ 
    width:     211, 
    height:    19,
    caption: false
  });
});  
