$(document).ready(function(){
  if(!$.browser.msie || $.browser.msie && $.browser.version > 6){
    if(!$.browser.msie || $.browser.msie && $.browser.version > 7){
      $('button, input:submit, input:button, div.layoutAdmin a').button();
      $('#menuAdmin a.menuItemAdminDashboard').button({
        icons: {
          primary: 'ui-icon-home'
        }
      });
      $('#menuAdmin a.menuItemAdminManageContent').button({
        icons: {
          primary: 'ui-icon-pencil'
        }
      });
      $('#menuAdmin a.menuItemAdminManageEvents').button({
        icons: {
          primary: 'ui-icon-calendar'
        }
      });
      $('#menuAdmin a.menuItemAdminManageFoodMenus').button({
        icons: {
          primary: 'ui-icon-script'
        }
      });
      $('#menuAdmin a.menuItemAdminManageImages').button({
        icons: {
          primary: 'ui-icon-image'
        }
      });
      $('#menuAdmin a.menuItemAdminLogout').button({
        icons: {
          primary: 'ui-icon-key'
        }
      });
    }
    $('div#content_sub a').bind('hover mouseover focusin', function(){
      switch ($(this).attr('class')){
        case 'theStory':
          $('div#content_sub div#sub_picture').attr('class', 'story');
          $('div#content_sub div#sub_description').text('After opening on the Fourth of July in 2009, Dancing Bear has not only been attracting crowds from near and far, but bringing them back for more!');
          break;
        case 'theCoffee':
          $('div#content_sub div#sub_picture').attr('class', 'coffee');
          $('div#content_sub div#sub_description').text('Serving only the finest coffees and fresh pastries, including a secret blend of espresso.');
          break;
        case 'theExperience':
          $('div#content_sub div#sub_picture').attr('class', 'experience');
          $('div#content_sub div#sub_description').text('You\'ll forget all your worries before you even step foot in the door.  We\'re more than just a coffee shop, we are an experience.');
          break;
        default:
          $('div#content_sub div#sub_picture').attr('class', 'default');
          $('div#content_sub div#sub_description').text('Serving exceptional coffee in an extraordinary atmosphere.  We truly do offer THE ULTIMATE COFFEE EXPERIENCE!');
          break;
      }

    }).bind('mouseout focusout', function(){
      $('div#content_sub div#sub_picture').attr('class', 'default');
      $('div#content_sub div#sub_description').text('Serving exceptional coffee in an extraordinary atmosphere.  We truly do offer THE ULTIMATE COFFEE EXPERIENCE!');
    });


  }
  if(!$.browser.msie && !$.browser.opera){
    $('fieldset, .product').corner('6px');
    $('input:text, textarea, select').corner('3px');
  }else if($.browser.opera){
  }else if($.browser.msie && $.browser.version == 8){
    $('.dataTables_wrapper').corner('5px');
  }else if($.browser.msie && $.browser.version == 7){
  }else if($.browser.msie && $.browser.version <= 6){
    // IE 6 and under are not supported by this website due to security and functionality reasons.
    // For users of these outdated browsers, we add a title attribute to every tag reminding them
    // to upgrade in addition to the warning on every page and the styles being disabled.
    $('*:not(#ie6BelowAlert a)').attr('title', 'Your browser has been detected as Microsoft Internet Explorer 6 or older and is not supported by this site.');
  }
});
