/**
 * @author Seich
 * Martian Wabbit Productions © All Rigths Reserved
 * 
 * if you are looking at this code to learn something. Go ahead and read it :) 
 */
$(function(){
	//menu image swapping.
    $("#home").hover(function(){
        $(this).attr("src", "images/home-over.gif");
    }, function(){
        $(this).attr("src", "images/home.png");
    });
    
    $("#portfolio").hover(function(){
        $(this).attr("src", "images/portfolio-over.gif");
    }, function(){
        $(this).attr("src", "images/portfolio.png");
    });
    
    $("#about").hover(function(){
        $(this).attr("src", "images/about-over.gif");
    }, function(){
        $(this).attr("src", "images/about.png");
    });
	
	$("#submit").hover(function(){
		$(this).attr("src", "images/submit-n.gif");
	},function(){
		$(this).attr("src", "images/submit-o.gif");
	});
});
