$(document).ready(function(){
	
    $(".send, .topBanners img, .newsletter, .leftBoxFeedback img, .productPhoto img, .previous, .next, .productCart img, .goTop, .miniatureBox img").hover(
        function () {
            $(this).fadeTo("fast", 0.6);
        },
        function () {
            $(this).fadeTo("fast", 1);
        }
        );
	
    $(".formTxt").focus(
        function(){
            this.value = "";
        }
        );
	
    $("input[name='search']").blur(function () {
        if(this.value==""){
            this.value = "szukana fraza..";
        }
    }
    );
	
    $(function(){
        $('.promotions').loopedSlider({
            container: '.promotion',
            slides: '.slides',
            pagination: '.promotionListing',
            autoStart: 4500,
            restart: 5000,
            containerClick: false
        });
    });

    $(".products .productBox").each(function (i) {
        if(i % 4 ==0)$(this).addClass("productFirst");
        i = i+1;
    });
   
    $(".breadcumb a:last").addClass("last");

});