$(function()
{
    $('img[data-hover]').hover(function()
    {
        $(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
    }).each(function()
    {
        $('<img />').attr('src', $(this).attr('data-hover'));
    });;
});

function ChangeFontSize(id,size)
{
    document.getElementById(id).style.fontSize=size+"px";
}

function swapImages(){
    var $active = $('#partneri .active');
    var $next = ($('#partneri .active').next().length > 0) ? $('#partneri .active').next() : $('#partneri a:first');
    $active.fadeOut(function()
    {
        $active.removeClass('active');
        $next.fadeIn().addClass('active');
    });
}

function swapImages2(){
    var $active = $('#sponzori .active');
    var $next = ($('#sponzori .active').next().length > 0) ? $('#sponzori .active').next() : $('#sponzori a:first');
    $active.fadeOut(function()
    {
        $active.removeClass('active');
        $next.fadeIn().addClass('active');
    });
}

$(document).ready(function()
{
    setInterval('swapImages()',10000);
    setInterval('swapImages2()',10000);
})

