// JavaScript Document

$(document).ready(function(){
    //NEED to preload background images
    //SUBHEADER SILK ANIMATION ATTRIBUTES
    $('#wrapper').cycle({
            fx: 'fade',
            speed: '4000',
            timeout:  15000
    });

    /*VIP LIST FADE IN/OUT*/
    $('#vipList').cycle({
            fx: 'fade',
            speed: '3000',
            timeout:  7000,
            cleartype: 1,
            cleartypeNoBg: true
    });
    
   //IE6 FIXES SPECIFIC TO HOME PAGE
    if (jQuery.browser.msie) {
      if(parseInt(jQuery.browser.version) == 6) {
            $('#wrapper').css({position:'relative' , top: '-259px' });
            $('#mainContentWrapper').css({position:'relative' , top: '-259px' });
            $('#footer').css({position:'relative' , top: '-259px' });
            $('body').css({height: '600px', overflow: 'hidden'});
          }
      }
});
