$(document).ready(function() {

    $('input#login_login').click(function(){
	if ($(this).val() == 'email'){
	    $(this).val('');
	}
    })

    $('textarea.ckeditorable').each(function(i){
	var oEditor = CKEDITOR.replace($(this).attr('name'));
    });

    if ($("a[rel^='prettyPhoto']").length > 0){
	$("a[rel^='prettyPhoto']").prettyPhoto();
    }

    if ($("img.pictogram").length > 0){
	var aDescription = new Array();
	$("img.pictogram").each(function(){ //img alt needs be remember becouse tooltip clear alt attributes
	    aDescription[$(this).attr('src')] = $(this).attr('alt');
	})
	$("img.pictogram").tooltip({
	    bodyHandler: function() {
		return aDescription[$(this).attr('src')];
	    },
	    showURL: false,
	    fade: 150
	});
    }

    //decorate display to field
    if ($('input.jqUIdatepicker').length > 0){
	$('input.jqUIdatepicker').datepicker({
	    changeMonth: true,
	    changeYear: true,
	    numberOfMonths: 1,
	    showButtonPanel: false,
	    dateFormat: 'dd-mm-yy',
	    minDate: 0,
	    dayNamesMin: ['Nd', 'Pn', 'Wt', '\u015ar', 'Cz', 'Pt', 'Sa'],
	    monthNames: ['Stycze\u0144','Luty','Marzec','Kwiecie\u0144','Maj','Czerwiec','Lipiec','Sierpie\u0144','Wrzesie\u0144','Pa\u017adziernik','Listopad','Grudzie\u0144'],
	    monthNamesShort: ['Sty','Lut','Mar','Kwi','Maj','Cze','Lip','Sie','Wrz','Pa\u017a','Lis','Gru']
	});
    }

})