$(document).ready(function(){
    $('a[rel*=blank], a[rel*=ext]').click(function(){
        window.open(this.href);
        return false;
    });
    
    $('a[href=#]').click(function(){
        return false;
    });
    
   /*
     * 	Podpisy w polach input
     */
    $('.labeled').each(function(){
        $(this).focus(function(){
            if ($(this).val() == $(this).attr('rel')) {
				$(this).val('');
				$(this).addClass('active');
			}
        })
        $(this).blur(function(){
            if ($(this).val() == '') {
				$(this).val($(this).attr('rel'));
				$(this).removeClass('active');
			}
        })
    })
});
