 $(document).ready(function(){


// signup form change class on focus and blur
$('input').focus(function() {
$(this).addClass('formOn');
});
$('input').blur(function() {
$(this).removeClass('formOn');
});
// default text for signup form - forename
//$('#forename').focus(function() {
//if ($('#forename').val() == "Forename") {
//$(this).val("");
//}
//}).blur(function(){
//if ($('#forename').val() == "") {
//$(this).val("Forename");
//}
//});
// default text for signup form - surname
//$('#surname').focus(function() {
//if ($('#surname').val() == "Surname") {
//        $(this).val("");
//    }
//}).blur(function() {
//if ($('#surname').val() == "") {
//        $(this).val("Surname");
//    }
//});
// default text for signup form - email
//$('#mktUdateEmail').focus(function() {
//if ($('#mktUdateEmail').val()=="Email"){
//$(this).val("");
//}
//}).blur(function(){
//if ($('#mktUdateEmail').val()==""){
//$(this).val("Email");
//}
//});


// removes links from the navigation bar
//$("#headerWrapper a[href]").attr("href", "#");

// add active class to the navbar links
//	$('#mainNavWrapper4 li').not('.goWCcom').click(function() {
//	$('#mainNavWrapper4 li').removeClass('active');
//	$(this).addClass('active');




});

