
$(document).ready(function() {
	$("#sendtofriend").click(function() {

		$.msgbox('Please tell all your friends about Moms and Munchkins!  ', {
  		type : 'prompt',
  			inputs : [
    			{type: 'text', label: 'Friends Email', value:'', required : 'true'},
    			{type: 'text', label: 'Your Name', value:'', required : 'true'},
    			{type: 'text', label: 'Your Email', value:'', required : 'true'},
    			{type: 'text', label: 'Message', value:'', }
  				],
  			buttons : [
    		{type: 'submit', value:'Send To Friend Now'},
			{type: 'cancel', value:'Cancel'}
  			]
		}, function(e1, e2, e3, e4) {
  // your code here
		});

	});

})
