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

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

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

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

});

