jQuery().ready(function(){

	$("#menu .white > a").addClass('sub');
	
	$('#menu').accordion({
		active: false,
		autoHeight: false,
		navigation: true,
		collapsible: true,
		header: '.menuItem'
	});
		
	 $("#word").focus(function(){
		 if($(this).val()=='wpisz szukaną frazę...') {
			 $(this).attr('value',''); 
		 }
	 });
	 
	 $("#word").blur(function(){
		 if($(this).val()=='') {
			 $(this).attr('value','wpisz szukaną frazę...');
		 }
	 });
	 
	 $(".print").click(function(e) {
		 e.preventDefault();
		 var href=$(e.target).attr('href');
		 window.open(href,'','location=0,height=670,width=600,scrollbars=yes');
		 return false;
	 });
	 
	 $("a").click(function(){
		 if($(this).attr('rel')=='external') {
			 $(this).attr('target','_blank');
		 }
	 });
	 
	 $(".banner").click(function(){
		 window.location=$(this).find("a").attr("href");return false;
	 });
	 
});
