
$(document).ready(function () {
    
/* strefa klienta */   
 var inpt = $("input:text, textarea");
 inpt.each(function(){
   if(this.value == '') this.value = this.title;
 }).focus(function(){
   if(this.value == this.title) {
	   this.value = '';
	   $(this).removeClass('inp2');
   }
 }).blur(function(){
   if(this.value == '') {
	this.value = this.title;
	$(this).addClass('inp2');
   }
 });
 
 
 /* menu rozwijane */
$("#MENU .menu li").hover(function() { //Hover over event on list item
                    $(this).find(".submenu").show(); //Show the subnav
                    $(this).find("span.menu_el").css({'background':'url(/img/bg_menu_hover.jpg) repeat-x' , 'color':'#052351' });
            } , function() { //on hover out...
                    $(this).find(".submenu").hide(); //Hide the subnav
                    $(this).find("span.menu_el").css({'background':'none' , 'color':'#fff' } );
                    // $(this).find("a.menu_el").css('background', '#205285' );
            });

/* zmiana zakładek */
$("#CNT_MAIN_R .wykr ul li").click(function() {
    $("#CNT_MAIN_R .wykr ul li").removeClass('active');
    $(this).addClass('active');
    if( $(this).hasClass('w1'))
        {
            $("#CNT_MAIN_R .wykr .wyk_1").show();
            $("#CNT_MAIN_R .wykr .wyk_2").hide();
        }
    else
        {
            $("#CNT_MAIN_R .wykr .wyk_1").hide();
            $("#CNT_MAIN_R .wykr .wyk_2").show();
        }
});

/* login box */
$("#SP .sp_r .str_art .add_com .add_com_r a.box_log").click(function() {
    $("#login_box").show();
});

/* shadowbox */
Shadowbox.init({
	 
});

});


