$(document).ready(function(){
    var menu = $('#menu-top>li');
    if(menu.length){
        for(var i = 0; i < menu.length; i+=3) {
            menu.slice(i, i+3).wrapAll($('<div>').addClass('wrap'));
        }
    }
    $('#menu-top').append($('<div>').addClass('clear'));
    var img = new Image();
    img.onload = function() {
        $("#h-gallery .h-g-s").fadeTo(500,1);
        $("#h-gallery .h-g-s").css('background-image','url("' + this.src + '")');
    }
    $('.gallery .line').each(function(){
        $(this).children('a:first').css('margin-left','0');
        $(this).children('a:last').css('margin-rigth','0');
    });
    setInterval("next()", 10000);
    $('#h-gallery .nav a').click(function(){
        $("#h-gallery .h-g-s").stop();
        if(!$(this).hasClass('active')){
            $('#h-gallery .nav a').removeClass('active');
            $("#h-gallery .h-g-s").fadeTo(500,0.25);
            img.src = $(this).attr('href');
            $(this).addClass('active');
        }
        return false;
    });
});
function next(){
    if($('#h-gallery .nav a.active').next('a').length)
        $('#h-gallery .nav a.active').next('a').click();
    else
        $('#h-gallery .nav a:first').click();
}
