
$(document).ready(function() {

$('#button-top-1').hover(function () {
			$(this).attr("src","templates/images/button-top-1r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-top-1.png");
			});

$('#button-top-2').hover(function () {
			$(this).attr("src","templates/images/button-top-2r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-top-2.png");
			});

$('#button-top-3').hover(function () {
			$(this).attr("src","templates/images/button-top-3r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-top-3.png");
			});
 
 $('#button-1').hover(function () {
			$(this).attr("src","templates/images/button-1r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-1.png");
			});

$('#button-2').hover(function () {
			$(this).attr("src","templates/images/button-2r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-2.png");
			});
$('#button-3').hover(function () {
			$(this).attr("src","templates/images/button-3r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-3.png");
			});
$('#button-4').hover(function () {
			$(this).attr("src","templates/images/button-4r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-4.png");
			});
$('#button-5').hover(function () {
			$(this).attr("src","templates/images/button-5r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-5.png");
			});
$('#button-6').hover(function () {
			$(this).attr("src","templates/images/button-6r.jpg");},
			function(){
				$(this).attr("src","templates/images/button-6.png");
			});
 
 
 
 
 
 
 
});
