/*
 * Removes the default value of a inputfield on focus
 * and puts the default label back when nothing is filled in.
 */
function removeLabelOnFocus()
{   var label = $('#facultyTextSearch').val();
    $('#facultyTextSearch').focus(function()
    {   $(this).val('');
    });
    $('#facultyTextSearch').blur(function()
    {   if ($(this).val().length < 1)
        {   $(this).val(label);
        } 
    });
}

$(function(){
    removeLabelOnFocus();
});


function ShowSubscriptionForm() {
    $(".introRight, .introLeft, #subscription-form").slideToggle('fast');
}


function  HideSubscriptionForm() {
    $("#subscription-form").hide();
    $(".introRight").show();
    $(".introLeft").show();
}

$(document).ready(function () {

    /* Using custom settings */
   

});
