/* jQuery goodies
 * 
 */

jQuery(document).ready(function(){
    jQuery('.footOrderPage').ajaxPopup({
        wrapper:'OrderGIBKit',
        successMesg:'Congratulations your order for the GIB Living book has been placed.'
    });
    //jQuery('.storySubmitForm').ajaxIframePopup({wrapper:'StorySubmit'});
	
    // find multifileuploads when clicked
    jQuery('.storySubmitForm').click(function(){
        jQuery('iframe').load(function (){
            jQuery(this).contents().findMultiFiles();
        });
    });
	
});
