/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){

    $('#social_flickr_img').mouseover(function(){
    
        var src = $(this).attr("src");

        var srcrep = src.replace("gl", "rg");  
     
        document.getElementById("social_flickr_img").setAttribute("src", srcrep);
    });
    $('#social_flickr_img').mouseleave(function(){

        var src = $(this).attr("src");

        var srcrep = src.replace("rg", "gl");

        document.getElementById("social_flickr_img").setAttribute("src", srcrep);
    });


    $('#social_facebook_img').mouseover(function(){

        var src = $(this).attr("src");

        var srcrep = src.replace("gl", "rg");

        document.getElementById("social_facebook_img").setAttribute("src", srcrep);
    });
    $('#social_facebook_img').mouseleave(function(){

        var src = $(this).attr("src");

        var srcrep = src.replace("rg", "gl");

        document.getElementById("social_facebook_img").setAttribute("src", srcrep);
    });
    
    
});
