
$(document).ready(function () {
	$('#menu ul li').each(function () {
		$(this).hoverIntent(function () {
			$(this).find('ul').slideDown("fast");
		},
		function () {
			$(this).find('ul').slideUp("fast");
		});
	});
    $('#show IMG:first').addClass('.active');

    $('#select_language').change(function ()
    {
        window.location = this.value;
    });
});

function slideSwitch() {
    var $active = $('#show IMG.active');

    if ( $active.length == 0 ) 
	$active = $('#show IMG:last');

    var $next =  $active.next().length ? $active.next() : $('#show IMG:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval("slideSwitch()", 5000 );
});


