$(document).ready(function() {
/*-----------------------------*/

function toggleGlow(el){
	$(el).parent().toggleClass('glow');
}

$('#contact input').focus(function(){
								toggleGlow(this);
							});
							
$('#contact input').blur(function(){
								toggleGlow(this);
							});
							
$('#contact textarea').focus(function(){
								toggleGlow(this);
							});
							
$('#contact textarea').blur(function(){
								toggleGlow(this);
							});

newsDefault = $('#newsletterForm input').eq(0).attr('value');
							
$('#newsletterForm input').eq(0).focus(function(){
								if($(this).attr('value')==newsDefault){
									$(this).attr('value', '');
								}
							});
							
$('#newsletterForm input').eq(0).blur(function(){
								if($(this).attr('value')==''){
									$(this).attr('value', newsDefault);
								}
							});
							
/*-----------------------------*/
							});