$(document).ready(function() {
	$(document).pngFix(); 

	$('a.lb').lightBox({
	overlayBgColor: '#000',
	overlayOpacity: 0.6,
	imageLoading: 'http://rolvet.pl/images/lightbox-ico-loading.gif',
	imageBtnClose: 'http://rolvet.pl/images/lightbox-btn-close.gif',
	imageBtnPrev: 'http://rolvet.pl/images/lightbox-btn-prev.gif',
	imageBtnNext: 'http://rolvet.pl/images/lightbox-btn-next.gif',

	containerResizeSpeed: 350,
	txtImage: 'Obraz',
	txtOf: 'z'
   });
   
	$('#scrollContent').jScrollPane();
	$("ul.sf-menu").superfish({ 
		delay:       0,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
	$("#contact").validate({
		rules: {
			name:{
				required: true
			},
			phone:{
				required: true
			},
			email: {
				required: true,
				email: true
			},
			msgBody:{
				required: true
			}
		},
		messages: {
			name:"Proszę podać imię i nazwisko",
			phone:"Proszę podać nr telefonu składający się z samych cyfr",
			email: "Proszę podać poprawny adres e-mail",
			msgBody: "Proszę wpisać treść wiadomości."
		}
	}); 
	
});
