$(document).ready(function(){
						$('input[type="text"]').focus(function(){
									if (this.value == this.defaultValue){this.value = ''};});
						$('input[type="text"]').blur(function(){ if (this.value == ''){this.value = this.defaultValue};});		  
						$('a.boxsubmit').hover(function(){
									$(this).addClass('hover');						   
															   },function() {
									$(this).removeClass('hover');							   
															   });
						$('input#right-sign-submit').hover(function() {
									$(this).addClass('hover');								
																	},function(){$(this).removeClass('hover');});
						$('#box1-learn').click(function(){
									$(this).hide();
									$('div.flywheel-form').css('display', 'inline');
									$('p.flywheel-info').hide();
									$('p.flywheel-tag').hide();
									$('#box1-learn2').show();
														});
						$('#box2-learn').click(function(){
									$('div.ecosystem-form').css('display', 'inline');
									$('p.ecosystem-info').hide();
									$(this).hide();
									$('#box2-learn2').show();
														});
						$('#box3-learn').click(function(){
									$('div.web-form').css('display', 'inline');
									$('p.web-info').hide();
									$(this).hide();
									$('#box3-learn2').show();
														});
						$('#box4-learn').click(function(){
									$('div.graphic-form').css('display', 'inline');
									$('p.graphic-info').hide();
									$('p.graphic-tag').hide();
									$(this).hide();
									$('#box4-learn2').show();
														});
						$('#submit').hover(function(){
									$(this).addClass('hover');						   
															   },function() {
									$(this).removeClass('hover');							   
															   });
						$('#right-sign-submit').click(function(){errorcheck5();});
						$('a[name="plain-submit"]').click(function(){errorcheck1();});
								   });