$(document).ready(function() {

	$('span[@title]').css({borderBottom: '1px solid #900'}).cluetip({
	  splitTitle: '|', 
	  arrows: true, 
	  dropShadow: true, 
	  cluetipClass: 'jtip'}
	);
	
$("#dodaj-ogl").validate({
		errorLabelContainer: "#messageBox",
		wrapper: "li",
		rules:{
			kategoria: {
				required: true
			},
			tytul: {
				required: true
			},
			file: {
				required: false,
				accept:'jpg|jpge|png'	
			},
			telefon: {
				required: true,
				number:true
			},
			mail: {
				required: true,
				email: true
			},

		},
		messages: {
			kategoria: "Proszę wybrać kategorię.",
			tytul: "Proszę podać tytuł ogłoszenia.",
			telefon: "Proszę swój numer telefonu.",
			mail: "Podaj swój adres mailowy.",
			file: "Akceptowalne formaty pliku to: jpg, jpeg i png.",
		}

});



	
});



