jQuery(function () {
	if($.client.browser=='Firefox' && $.client.os=='Mac'){
		jQuery('#contact-link').css('padding-left', '43px');
		jQuery('#contact-link').css('padding-right', '43px');
	}
	
	jQuery('.divide').last().css('border-bottom', '0px');
	
	// -----------------------
	// Contact form functions
	// -----------------------
	
	// Name Field
	jQuery('#name_field').focus(function(){
		if ($(this).val() == '* Name'){
			$(this).val('');	
		}
	});
	jQuery('#name_field').blur(function(){
		if ($(this).val() == ''){
			$(this).val('* Name');	
		}
	});	
	
	// Company Field
	jQuery('#company_field').focus(function(){
		if ($(this).val() == '* Company'){
			$(this).val('');	
		}
	});
	jQuery('#company_field').blur(function(){
		if ($(this).val() == ''){
			$(this).val('* Company');	
		}
	});	
	
	// Email Field
	jQuery('#email_field').focus(function(){
		if ($(this).val() == '* Email'){
			$(this).val('');	
		}
	});
	jQuery('#email_field').blur(function(){
		if ($(this).val() == ''){
			$(this).val('* Email');	
		}
	});	
	
	// Message Field
	jQuery('#message_field').focus(function(){
		if ($(this).val() == '* Your message'){
			$(this).val('');	
		}
	});
	jQuery('#message_field').blur(function(){
		if ($(this).val() == ''){
			$(this).val('* Your message');	
		}
	});	
	

});

