/* Author: 

*/
$(document).ready(function(){
$("#kontakt a").hide();
$(".slide").hide();
$("#one").show();
var time=500;
var current="one";
$(".one").click(function(){
$("#"+current).fadeOut(time,function(){$("#one").fadeIn(time);});
current="one";
})
$(".two").click(function(){
$("#"+current).fadeOut(time,function(){$("#two").fadeIn(time);});
current="two";
})
$(".three").click(function(){
$("#"+current).fadeOut(time,function(){$("#three").fadeIn(time);});
current="three";
})

$("#home, #onas, #oferta").hover(
function(){
$(this).children("a").children("img").attr('src','img/kolor_'+$(this).attr('id')+'.png');
},
function(){
$(this).children("a").children("img").attr('src','img/'+$(this).attr('id')+'.png');
});
});

$("#kontakt").hover(function(){
$(this).children("img").hide(0);
$(this).children("a").show(0);
},
function(){
$(this).children("img").show(0);
$(this).children("a").hide();
});























