$(document).ready(function() {
    
    $('#xgallery div:gt(0)').hide();
    $('#xgallery div:eq(0)').addClass('active');
    setInterval(function(){
        var i = $('#xgallery div').index($('#xgallery div.active'));
        if(i == undefined) i = 0;
        if(i == $('#xgallery div').length -1) i = 0; else i++;
        $('#xgallery div').removeClass('active').fadeOut().eq(i).addClass('active').fadeIn(1000);
    }, 3000);    

    $('#logo3 a').hover(function(){
        $('img',$(this)).hide().eq(1).show();
    }, function(){
        $('img',$(this)).hide().eq(0).show();
    });
	 $('#logo4 a').hover(function(){
        $('img',$(this)).hide().eq(1).show();
    }, function(){
        $('img',$(this)).hide().eq(0).show();
    });
	 $('#logo5 a').hover(function(){
        $('img',$(this)).hide().eq(1).show();
    }, function(){
        $('img',$(this)).hide().eq(0).show();
    });

    //$('#container').vAlign();
});
