$(document).ready(function() {
	$('#search .text').focus(function() {
		if ($(this).val() == 'Wpisz szukaną frazę')
			$(this).val('');
	});
	$('#NewsletterEmail').focus(function() {
		if ($(this).val() == 'Adres email...')
			$(this).val('');
	});
	
});

function news_toggle(id, source) {
	var tmp = $(source).text() == 'Więcej';
	$('.news_content').slideUp(500);
	$('a.news_more').text('Więcej');
	
	if (tmp) {
		$('#news_content_' + id).slideDown(500);
		$(source).text('Zwiń');
	}
	return false;
}
