/* CSS Document */

/* Vuk Ninic 05/2010 */


$(document).ready(function() {


    $(".logo img").mouseover(function() { 
            var src = $(this).attr("src").replace(".png", "_preko.png");
            $(this).attr("src", src);
        }).mouseout(function() {
            var src = $(this).attr("src").replace("_preko.png", ".png");
            $(this).attr("src", src);
        });
});


