$(document).ready(function(){

//
/* ------------------------------------------------------------------------------------ POD OBRAZKIEM ROBI SIE PODPIS Z ALT'a */
/*
$(".post .entry img").each(function(){
	var altNapis = $(this).attr("alt");
	var szerokosc = $(this).width()-10;
	$(this).parent().addClass("float-right");
	$(this).after("<span style='padding: 5px; width:"+szerokosc+"px' class='img-podpis'>"+altNapis+"</span>");
});
*/
//
//
/* ------------------------------------------------------------------------------------ FADE */
function fadeId (coFade, odWartosci, doWartosci) {
$(coFade).fadeTo(100, odWartosci);
$(coFade).hover(
	function(){
		$(this).fadeTo("fast", doWartosci);
		return false;
	},function(){
		$(this).fadeTo("fast", odWartosci);
		return false;
});
}
fadeId ('.dodaj-komentarz', 0.5, 1.0);
fadeId ('.wyslij-znajomemu', 0.5, 1.0);
//
//
/* ------------------------------------------------------------------------------------ SIFR */
$('h3').sifr( {
	font: 'http://blog.deezee.pl/sifr/desyrel',
	textAlign: 'left'
});
//
//
/* ------------------------------------------------------------------------------------ PNG dla IE6 */
	$('#logo, .notka h2, #kawa ').ifixpng('img/pixel.gif');
	/*$('img[@src$=.png], #panel').ifixpng('media/pixel.gif');*/
//
//
// ---------------------------------------------------------------------------- OCHRONA MAILA
// ---------------------------------------------------------------------------- POMYSL... http://viebrock.ca
$('a.email').each(function(){
	e = this.rel.replace('*','@');
	this.href = 'mailto:' + e;
	$(this).text(e);
	$(this).attr("title", e );
});
//
//
/* ------------------------------------------------------------------------------------ TOOLTIP */
xOffset = 10;
yOffset = 20;
    $(".tooltip").hover(function (e) {this.t = this.title;	this.title = "";$("body").append("<p id='tooltip'>" + this.t + "</p>"); $("#tooltip").css("top", e.pageY - xOffset + "px").css("left", e.pageX + yOffset + "px").fadeIn("fast");}, function () {this.title = this.t;$("#tooltip").remove();});
    $(".tooltip").mousemove(function (e) {$("#tooltip").css("top", e.pageY - xOffset + "px").css("left", e.pageX + yOffset + "px");});
//
//
/* ------------------------------------------------------------------------------------ MENU MALE */
$("#searchform").each(function() {
var tytul = 'szukaj w blogu';
var pole = $(this).find("input[@type=text]")
pole.width(80);
pole.val(tytul)
pole.bind('focus', function() {
	if (pole.val() == tytul) pole.val('');
	pole.width(160);
});
pole.bind('blur', function() {
	if (pole.val() == '') pole.val('szukaj w blogu');
	pole.width(80);
	//$(this).width(30).css({"background-image":"url(img/misc/bg-szukaj.gif)"});
});
$(this).find("input[@type=image]").bind('click', function() {
	if (pole.val() == tytul) pole.val('');
});							
})
//
//

//
//
//
});

