        $(function() {
            $('#gallery a').lightBox({fixedNavigation:true});


           $("#slider").slider({
           
                value:5,
                min: 1,
                max: 9,
                step: 1,
                slide: function(event, ui) {

                    var cont = -3;
                    var num = ui.value - 2;
                    for(i=1;i<=5;i++){
                        if(num <= 0 || num >= 10)
                            image = 'http://www.padrezezinhoscj.com/wallwp/wp-content/uploads/pixel';
                        else
                        image = 'http://www.padrezezinhoscj.com/wallwp/wp-content/uploads/image00'+num;
                        document.getElementById('image'+i).src =  ( image )+'.jpg'
		            	document.getElementById('a_image'+i).href = ( image )+'.jpg'
                        num++;
                    }
                }

            });
        });
        
        $("#slider").slider();
        


