$(document).ready(function(){
//na4alo na script za menu
$('#laminated_btn').hover(function()
{
  $(this).attr("src", "images/laminated_home_over_de.gif");
}, function() {
  $(this).attr("src", "images/laminated_home_de.gif");
});

$('#unlaminated_btn').hover(function()
{
  $(this).attr("src", "images/unlaminated_home_over_de.gif");
}, function() {
  $(this).attr("src", "images/unlaminated_home_de.gif");
});

$('#eco_btn').hover(function()
{
  $(this).attr("src", "images/eco_home_over_de.gif");
}, function() {
  $(this).attr("src", "images/eco_home_de.gif");
});

$('#boxes_btn').hover(function()
{
  $(this).attr("src", "images/boxes_home_over_de.gif");
}, function() {
  $(this).attr("src", "images/boxes_home_de.gif");
});
//kraj na script za menu

});

