$('.clear_input').focus(function () {
	if ($(this).val() == $(this).attr("title")) {
		$(this).val("");
	}
}).blur(function () {
	if ($(this).val() == "") {
		$(this).val($(this).attr("title"));
	}
});




 $(document).ready(function(){

 $('.login').click(function () {
$('#logowanie_div').toggle("slow");
});


 $('.comm').click(function () {
 var the_id  = $(this).parent('.comment_box1_footer').attr('id');
$('#add_odp_'+the_id).toggle("slow");
}); 




    $("#add_input").keyup(function () {
      var value = $(this).val();
      $("#show_text").val(value);
	  //$('#show_text').html().replace(/\n/g, '').replace(//ig, '\n');
    }).keyup();


});

$(function() {
$("img.imghover").show().lazyload({ 
    effect : "fadeIn"
});
$(".news_content img").show().lazyload({ 
    effect : "fadeIn"
});
/*
$(".imghover").lazyload({placeholder : "http://www.appelsiini.net/projects/lazyload/img/grey.gif", effect : "fadeIn"
});

$(".news_content img").lazyload({placeholder : "http://www.appelsiini.net/projects/lazyload/img/grey.gif", effect : "fadeIn" 
});
*/
}); 


 $(document).ready(function(){

    $('#slider').nivoSlider({
        effect:'slideInLeft', // Specify sets like: 'fold,fade,sliceDown'
        slices:15, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 4, // For box animations
        animSpeed:800, // Slide transition speed
        pauseTime:5000, // How long each slide will show
        startSlide:0, // Set starting Slide (0 index)
        directionNav:false, // Next & Prev navigation
        directionNavHide:true, // Only show on hover
        controlNav:true, // 1,2,3... navigation
        controlNavThumbs:false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel:false, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav:true, // Use left & right arrows
        pauseOnHover:true, // Stop animation while hovering
        manualAdvance:false, // Force manual transitions
        captionOpacity:1, // Universal caption opacity
        prevText: 'Poprzedni', // Prev directionNav text
        nextText: 'Następny', // Next directionNav text
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
});

