$(window).load(function(){			   
//external link to new window			   
$('body a').filter(function() { 
    return this.hostname && this.hostname !== location.hostname; 
  }).addClass('external')
  .click(function() { 
    window.open(this.href); 
    return false; 
  });
 });
 
$(document).ready(function(){

     $(".lightbox").lightbox();
     
     $('#header').flash({src:'swf/2m-tech.swf',
                        height:196,
                        width:980, 
                        wmode: 'transparent'
                        });                        

$('#searchword').click(function(){
    if ($(this).val()=='Vyhledávání...'){
      $(this).val(''); 
    }
});

//prepinac rozcestniku
    $('#topDetail h3').live('click', function(){
	  var box = '.'+$(this).attr('id');              
       $('.itemDetail,#topDetail h3').removeClass('active');
       $(box).addClass('active');
       $(this).addClass('active');     
	});
 
});