$(function() {

  $('#hp-slideshow').cycle({
    timeout: 8000
  });


  $('#alerts-email').focus(function(){
    if($(this).val() == 'Enter Email Address'){
      $(this).val('');
    }
  }).blur(function(){
    if($(this).val() == ''){
      $(this).val('Enter Email Address');
    }
  });


  $('a.ql').each(function(){
    var m = Math.floor( ($(this).parent().width() - $(this).width() ) / 2 );
    $(this).css({
      'left': (m+10)+'px'
    });
  });


});

