﻿$(function() {
	//$('#start_but').addClass('current');
	$('#menu li a').click(function(){
		$('#menu li a').removeClass()
		$(this).addClass('current');
		//console.log($(this).attr('href'));
		}	
	)
	//$('.link_wiecej').click(function(){
		//$('#menu li a').removeClass()
	//	var nast = $(this).attr('href');
	//	$('#menu li a[href$="nast"]').addClass('current');
	//	console.log(nast);
	//	}	
	//)
	$('#kontakt_but').click(function(){
	$('#kontakt').slideDown('slow');
	  return false;
	}
	);
	
	$('#menu li a , .link_wiecej , .dalej , #art a').click(function () {	
		var nast = $(this).attr('href');	
		if( nast == '#kontakt') { $('#kontakt').slideDown('slow');}

		$.scrollTo( nast, 800 , function() {
			window.location = nast;
      });

		//window.location = nast;
		return false;
	})
	
	$('#menu li p,#kontakt,#cennik').hide();
	$('#menu li a').mouseenter(function(){
		$(this).parent().find('p').fadeIn(200)		
	});
	$('#menu li a').mouseout(function(){
		$(this).parent().find('p').fadeOut(100)
	});

    $(" #content h1 , h2 , h3 , h4 , h5")
        .wrapInner("<span>");

    $(" #content h1 br , h2 br , h3 br , h4 br , h5 br")
        .before("<span class='spacer_before'>")
        .after("<span class='spacer_after'>");

	$('.spr_szczegoly').hide();
	$('.link_szczeg').click(function () {
		$(this).parent().find('.spr_szczegoly').slideToggle(400)
		$(this).text($(this).text() == '+ zobacz szczegóły' ? '- ukryj szczegóły' : '+ zobacz szczegóły');
		return false;
	});
	$('.all_szczeg').click(function () {
		var tekst = $(this).text()
		if (tekst == '+ wszystkie szczegóły'){
			$(this).parent().find('span.toggle').text('mniej')
			$(this).parent().parent().find('.spr_szczegoly').slideDown(400)
			$(this).parent().parent().find('.link_szczeg').text('- ukryj szczegóły')
		}
		else{
			$(this).parent().find('span.toggle').text('więcej')
			$(this).parent().parent().find('.spr_szczegoly').slideUp(400)
			$(this).parent().parent().find('.link_szczeg').text('+ zobacz szczegóły')
		}
		$(this).text($(this).text() == '+ wszystkie szczegóły' ? '- ukryj szczegóły' : '+ wszystkie szczegóły');
		return false;		
	});
	
	$('#art div.news').mouseenter(function(){
	$(this).find('p.intro').slideDown(400)
	});
	$('#art div.news').mouseleave(function(){
	$(this).find('.intro').slideUp(400);
	});
	$('.img_frame a').mouseenter(function(){
	$(this).parent().parent().css('background','#f5f5f5');
	});
	$('.img_frame a').mouseleave(function(){
	$(this).parent().parent().css('background','url(images/news_back.jpg) no-repeat top left');
	});
	$('.news_images a').lightBox();
	
			
	$('#cennik_open').click(function() {
	  $('#cennik').slideToggle('slow');
	  return false;
	});
	$('#sprawdz_ceny, #foot_ceny').click(function() {
		var nast = $(this).attr('href');
	//	console.log(nast)
		$('#cennik').show()
		$('#kontakt').slideDown('slow',function(){
			$.scrollTo( nast, 400 , function() {
				window.location = nast;
				});
		});
	  return false;
	});

});
