$(document).ready( function() {
    // toggle slide
    $("#billing_checkbox").click(function () {
        $("#billing_information").slideToggle("slow");
    });
    
     //*****************************************
    // Select Template Page
    //*****************************************
     $('.select_template_header').each( function( i ){
         // 'i' is the loop index
         $(".template_thumbs").attr("id", function (arr) {
         	return arr;
         })
         $(this).click(function(){
            $("#" + i).toggle(500);
        });
     }); 

});
