// JavaScript Document

$(document).ready(function(){
  //$(".scroll-pane").css({ width:"297px" }); 
  
	     $('.button td').hover(function () {
	           var t=$(this).attr("class");
	           var p;
	           if(t=="rynek"){
                  p='r'+$(this).text()+'jpg';
             }else{
                   p='g'+$(this).text()+'jpg';
             }
             
            
             $('.button td').css({'background-image':"url('templates/img/button.jpg')",color:"#C2D0E5",'background-position':"32px 0px",'background-repeat':"no-repeat"});
             $(this).css({ 'background-image':"url('templates/img/button1.jpg')"}); 
           
      	     $("#photo").attr({ 
                  src: 'templates/img/'+p,
                  title: "Słodki Wentzl",
                  alt: "Słodki Wentzl"
              });
        });
        $('#pane').jScrollPane({showArrows:true, scrollbarWidth: 15, arrowSize: 16 });
        $('#menu li').hover(function () {
             $('#menu li').css({ backgroundColor:"#fff", color:"#C2D0E5" }); 
	           $(this).css({ backgroundColor:"#0b4499", color:"#fff" });

        });
      


       
});

