		$(document).ready(function(){ 
			$('input[title="Vyhledat na stránkách"]').hint();
			
			$("#produkt_detail").tabs({event: 'mouseover'});
		
			$("a[rel='nahled']").colorbox({transition:"fade", opacity:0.5, current:""});

			$(".nahledy_tab li").click(function(){window.location=$(this).find("a").attr("href");return false;});
			
			$(".nahledy_prehled li").click(function(){window.location=$(this).find("a").attr("href");return false;});
			
			$('a.external').click( function() {
				window.open(this.href);
				return false;
			});
			
			$("#news").newsticker();
			
			$('a.posta').each(function(){
				e = this.rel.replace(':','@');
				this.href = 'mailto:' + e;
				$(this).text(e);
			});

// ODSTRAŇUJE NABÍDKU MATERIÁLŮ A DOPLŇKŮ		
			$('#produkt_detail').remove();
			$('#search_form').remove();
			
		});

