$(document).ready(function() {
  // product photo switcher
  $('body.products.show #photos img').bind('click', function () {
    var primary = $('body.products.show #photos .first img');
    primary.attr('src', $(this).attr('src'));
    return false;
  });
    
  // home default input text
  $('body.home.index input[type=text]').bind('focus', function () {
    if ($(this).val() == "Email Address") {
      $(this).val('');
    }
  });
  $('body.home.index input[type=text]').bind('blur', function () {
    if ($(this).val() == "") {
      $(this).val('Email Address');
    }
  });
  
  // toolbar bands switcher
  $('#toolbar .left h5 a').bind('click', function () {
    var modal = $('#toolbar .left ul');
    modal.toggleClass('hide');
    return false;
  });
  $('#toolbar .left ul').bind('click', function () {
    $(this).toggleClass('hide');
  });
});