$(document).ready(function(){

  if (jQuery.browser.msie){
    if(parseInt(jQuery.browser.version) <= 7){
      $(function() {
        var zIndexNumber = 1000;
        $('div').each(function() {
          $(this).css('zIndex', zIndexNumber);
          zIndexNumber -= 10;
        });
      });
    }};

  $("#nav li ul").parent()
    .addClass('dropdown')
    .hoverIntent(
      {
        over: function(){
                $(this).siblings('li').find('ul').fadeOut(350).parent().removeClass('dropped').addClass('dropdown');
                $(this).removeClass('dropdown').addClass('dropped').find('ul').slideDown(250);
              },
        interval: 0,
        timeout: 1000,
        out: function(){
                $(this).removeClass('dropped').addClass('dropdown').find('ul').fadeOut(350);
             }
      });


  $("#switch").click(function() {
    $(this).toggleClass('thumbswitch');
    $("ul.showcase").toggleClass('list');
  });

});