// Simple Rollover

$(function() {
$('.barBtns').hover(function() {
var currentImg = $(this).attr('src');
$(this).attr('src', $(this).attr('hover'));
$(this).attr('hover', currentImg);
}, function() {
var currentImg = $(this).attr('src');
$(this).attr('src', $(this).attr('hover'));
$(this).attr('hover', currentImg);
});
});


// Clear Text

function clear_textboxa()
{
if (document.tryForm.fullName.value == "Your Full Name")
document.tryForm.fullName.value = "";
}

function clear_textboxb()
{
if (document.tryForm.hospital.value == "Enter Hospital")
document.tryForm.hospital.value = "";
}

function clear_textboxc()
{
if (document.tryForm.email.value == "Your E-Mail")
document.tryForm.email.value = "";
}

function clear_textboxd()
{
if (document.tryForm.phone.value == "Your Phone")
document.tryForm.phone.value = "";
}
