$(document).ready(function() {
	$("img.btn_site").each(function(){
		$(this).mouseover( function() {
			$(this).attr("src", 'images/'+$(this).attr("name")+'_on.jpg');
        });
        $(this).mouseout( function() {
			$(this).attr("src", 'images/'+$(this).attr("name")+'_out.jpg');
        });
	})
	$("input.btn_contact").each(function(){
		$(this).mouseover( function() {
			$(this).attr("src", 'images/'+$(this).attr("name")+'_out.jpg');
        });
        $(this).mouseout( function() {
			$(this).attr("src", 'images/'+$(this).attr("name")+'_on.jpg');
        });
	})
});
