$(document).ready(function(){
    $(window).resize(function(){
        $('.megamenu').css('left', (Math.max($(window).width(),990))/2);
    })
    $('ul, ol').children(':last-child').addClass('last-child');
    $('ul, ol').children(':first-child').addClass('first-child');
    $('tbody').children(':last-child').addClass('last-child');
    $('tbody').children(':first-child').addClass('first-child');

    $('#home-slider ul').cycle({
        timeout:6000,
        prev:'#home-slider-prev',
        next:'#home-slider-next'
    });

    $('.login-slidedown').live('click',function(){
        $(this).prev('div').slideDown();
    });

    $('#login .return').live('click',function(){        
        $('#login').slideUp();
    });

    $('body').attr('class',$('#template').text());

    $( "#login" ).tabs();

    $('#home-links > li:not(.hover) a.megamenu-link').live('mouseover', function(){
        jQuery('#megamenu').remove();
        $('#home-links > li.hover').removeClass('hover');
        jQuery(this).parent().addClass('hover');
        mm = jQuery(this).next('ul.megamenu').clone();
        mm.appendTo('body').css('left', (Math.max($(window).width(),990))/2).attr('id','megamenu').fadeIn();
    });

    $('#megamenu').live('mouseleave', function(){
        jQuery('#megamenu').fadeOut();
        jQuery('#home-links > li.hover').removeClass('hover');
    });
   
})
