$(document).ready(function() {
	
	/* *** Home Banners *** */
	$('#rotate').before('<div id="pager">').cycle({ 
	    fx:     'fade', 
	    speed:  'slow', 
	    timeout: 6000, 
	    pager:  '#pager'
	});
	
	/* *** Forms *** */
	// Ajax form here
    $('form#the-form').ajaxForm({ 
      beforeSubmit: function(){
        return $('.validate').valid()
      },
      success: function(){
        window.location.replace("http://eco-card.co.uk/thanks/");
      }
    });
	
	/* *** PNG Fix *** */
	$(document).pngFix();
			
});
