
	
		
		var canDo = true;
		$(document).ready(function(){
			$('#parent2').mouseover(function(){
                canDo = false;
            }).mouseout(function(){
                canDo = true;
            });	
			
			
			//slider w topie wizerunkowym
		$("#parent2").wslide({
					width: 726,
					height: 480,
					horiz: true,
					fade:true,
					pos: 1
                	//autolink: false
           
				
		});
				
		//automatyczne uruchomienie slidera w topie wizerunkowym
		$('#parent2-menu a').click(function(){
                canDo = false;
            });
		
		$.timer(7000, function (timer) {
                if(canDo){
                    if($('#parent2-menu a:last').hasClass('wactive')){
                        $('#parent2-menu a:first').click();
                    }else{
                        $('#parent2-menu .wactive').next().click();
                    }
                    canDo = true; 
                }//else
                 //    alert("cant do");
        });	
		});
