﻿$(document).ready(function()
{
$('.news_more').hide();
$('.news_more_link').click(
 	function()
	{	
	var id_news = $(this).attr("id");
	$('#news_more_'+id_news).slideToggle('slow');
	}).toggle(function() { 
		$(this).text('mniej');	
		$(this).parent("div").attr('class', 'news_more_link_more2');
	}
	, function() { 
		$(this).text('więcej');
		$(this).parent("div").attr('class', 'news_more_link_more');
	});
$('.portfolio_photo').click(
 	function()
	{
	var id_proj = $(this).attr("rel");
	$('#news_more_news_'+id_proj).slideToggle('slow');
	}).toggle(function() { 
		var id_proj = $(this).attr("rel");
		$('#news_'+id_proj).text('mniej');	
	  	$('#news_'+id_proj).parent("div").attr('class', 'news_more_link_more2');
	}
	, function() { 
	var id_proj = $(this).attr("rel");
	 	$('#news_'+id_proj).text('więcej');
	  $('#news_'+id_proj).parent("div").attr('class', 'news_more_link_more');
	});
});