/*
 * Sliderform JQuery Script
 */
 
 $(document).ready(function() {
	$("#next").click(function(){
		$("#innerone").animate({marginLeft:'-601px'},'slow');
	
		$("#innertwo").animate({marginLeft:'-600px'},'slow');
        $("#innerthre").animate({marginLeft:'-599px'},'slow');
	});	
	$("#prev").click(function(){
		$("#innerone").animate({marginLeft:'0px'},'slow');
	
		$("#innertwo").animate({marginLeft:'0px'},'slow');
        $("#innerthre").animate({marginLeft:'0px'},'slow');
	});	
	$('#date').datepicker();
    $('#voucherform').submit(function(){
        $("#innerone").animate({marginLeft:'-1201px'},'slow');
    
        $("#innertwo").animate({marginLeft:'-1200px'},'slow');
        
        $("#innerthre").animate({marginLeft:'-1200px'},'slow');
    });
});
