/**
* Javascript for Forms
*
* @package js
* @author Tim Carr
* @version 1
* @copyright n7 Studios 2009
*/
$(document).ready(function() {
    // Clear and Set Field Labels on Focus / Blur
    $('input[name=email]').bind('focus', function(e) { if ($(this).val() == 'Email') $(this).val(''); });
    $('input[name=email]').bind('blur', function(e) { if ($(this).val() == '') $(this).val('Email'); });
    $('input[name=name]').bind('focus', function(e) { if ($(this).val() == 'Name') $(this).val(''); });
    $('input[name=name]').bind('blur', function(e) { if ($(this).val() == '') $(this).val('Name'); });
});