document.write('<script type="text/javascript" src="js/jquery.validate.min.js"></script>');
document.write('<script type="text/javascript" src="js/jquery-1.6.4.js"></script>');

var $j = jQuery.noConflict();

$j(document).ready(function() {

		$j(function() {
			$j("div.tabs").tabs(".images div.slide", {
		
				// enable "cross-fading" effect
				effect: 'fade',
				fadeOutSpeed: "slow",
		
				// start from the beginning after the last tab
				rotate: true
		
			// use the slideshow plugin. It accepts its own configuration
			}).slideshow();
		});

    // form input and textarea onfocus/onblur effect
	$('form input[type=text], form textarea').live('focus', function() {
		$('label.overlay[for=' + $(this).attr('id') + ']').hide();
	});

	$('form input[type=text], form textarea').live('blur', function() {
		if($(this).val() == '')
			$('label.overlay[for=' + $(this).attr('id') + ']').show();
	});

	// form validation
	
	$j("#cForm").validate({
		messages: {
			posName:    'Prosze wpisz pelna nazwe.',
			posEmail:   'Wpisz adres email.',
			posRegard:  'Podaj temat.',
			posText:    'Wklej wiadomosc.'
		}
	});	
	
});
