//$(document).ready(function() {
$(window).load(function(){  
  // przycisk powrotu
  $('a.back').bind('click', function(){
  history.back();
  return false;
  });
  
  // wywolanie drukowania
  $('a.print').bind('click', function(){
  window.print();
  return false;
  });
   
   //$("#branding-right").css({'position':'absolute', 'right':'-900px'});
   //$("#branding-right").animate({'right':'0'},550);
   
   /*brading mainpage*/  
   $("#bb3").animate({'left':'396px'},350);
   $("#bb2").animate({'left':'198px'},550);
   $("#bb1").animate({'left':'0'},650);
   $("#bb6").animate({'left':'396px','top':'128px'},750);
   $("#bb5").animate({'left':'198px','top':'128px'},850);
   $("#bb4").animate({'left':'0','top':'128px'},950);
   
   /*other site`s branding*/
   $("#bdb3").animate({'left':'396px'},350); 
   $("#bdb6").animate({'left':'198px'},550);
   $("#bdb1").animate({'left':'0'},650);
    
    
    $(".brand-box").hover(function(){
    	var bg=$(this).attr("id");
    	$(this).css({'background':'url(/theme/img/branding/'+bg+'r'+'.png)'});
			
    },function(){
    	var bg=$(this).attr("id");
    	$(this).css({'background':'url(/theme/img/branding/'+bg+'.png)'});
    });
   
});
