// JavaScript Document

$(document).ready(function() {
			
			$('#btn1').click(function(){

			$('#img2').fadeOut('slow');
			$('#img3').fadeOut('slow');
			$('#img4').fadeOut('slow');
			$('#img1').fadeIn('slow');
				
						  });



			$('#btn2').click(function(){

			$('#img1').fadeOut('slow');
			$('#img3').fadeOut('slow');
			$('#img4').fadeOut('slow');
			$('#img2').fadeIn('slow');
				
						  });


			$('#btn3').click(function(){

			$('#img1').fadeOut('slow');
			$('#img2').fadeOut('slow');
			$('#img4').fadeOut('slow');
			$('#img3').fadeIn('slow');
				
						  });


			$('#btn4').click(function(){

			$('#img1').fadeOut('slow');
			$('#img2').fadeOut('slow');
			$('#img3').fadeOut('slow');
			$('#img4').fadeIn('slow');
				
						  });
			
			
			$('#btn1').click();


});


            $(function(){
                $('#date_in').datepicker({
                    changeMonth: true,
                    changeYear: true,
                    dateFormat: 'yy-mm-dd'
                });
                $('#date_out').datepicker({
                    changeMonth: true,
                    changeYear: true,
                    dateFormat: 'yy-mm-dd'
                });
                
            });



