$(document).ready(function(){
	$("").attr("src","images/btn-search-on.gif");
	$("").attr("src","images/btn-subscribe-on.gif");
	
    $('.search .btn').hover(
        function(){ // Change the input image's source when we "roll on"
            $(this).attr({ src : 'images/btn-search-on.gif'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $(this).attr({ src : 'images/btn-search.gif'});             }
    );
    
    $('.newsletter .btn').hover(
        function(){ // Change the input image's source when we "roll on"
            $(this).attr({ src : 'images/btn-subscribe-on.gif'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $(this).attr({ src : 'images/btn-subscribe.gif'});             }
    );
});