// JavaScript Document
$(document).ready(function() {	
    $(".img-nav, .im-flag, .im-facebook").not(".img-nav-current").mouseover(function() { 
        var src = $(this).attr("src").match(/[^\.]+/) + "-o.jpg";
        $(this).attr("src", src);
    }).mouseout(function() {
        var src = $(this).attr("src").replace("-o", "");
        $(this).attr("src", src);
    });
    $(".img-gallery-thumb").mouseover(function() {              
        $(this).addClass("img-gallery-thumb-over");
    }).mouseout(function() {
        $(this).removeClass("img-gallery-thumb-over");
    }); 
    $(".img-gallerylist").mouseover(function() {              
        $(this).addClass("img-gallerylist-over");
    }).mouseout(function() {
        $(this).removeClass("img-gallerylist-over");
    });     
});


