/**
 * Wywołanie kilku ważnych funkcji po załadowaniu DOM
 **/
$(function(){
	// Animacja ukrywania komunikatów
	$('.errorBig .exit, .successBig .exit').click(function(){$(this).parents('.infoBig').slideUp('slow');});
	// PNGfix
	//$(document).not('.notPngFix').pngFix();
	
	// onFocus i onBlur dla pól tekstowych i wyboru
	$('.maincont .c2 input[type=text], .maincont .c2 input[type=password], .maincont .c2 textarea, .maincont .c2 select').focus(function(){
		$(this).addClass('textFocus');
	}).blur(function(){
		$(this).removeClass('textFocus');
	});
	// onFocus i onBlur dla klawiszy
	$('#mainContainer input[type=button], #mainContainer input[type=submit], #mainContainer input[type=reset]').focus(function(){
		$(this).addClass('buttonFocus');
	}).blur(function(){
		$(this).removeClass('buttonFocus');
	});
	
	// Dopisanie liczby produktów do menu
	/*
	$('.catMenuHolder a').each(function(){
		if($(this).attr('title') != '')
			$(this).after('<span class="normal">&nbsp;' + ( $(this).attr('title').match(/\((\d+)\)/g) ) + '</span>');
	});
	*/
	
	$('a._blank').attr('target', '_blank');
});
