﻿//make sure we have no conflicts with lightview's prototype and scriptaculous libraries
jQuery.noConflict();

//hide and show the infield label in the contact form
jQuery(document).ready(function () {
    jQuery("fieldset#contact-form > div > label").inFieldLabels();
});

//jQuery("div#form-name > label").inFieldLabels();
//jQuery("div#form-emailaddress > label").inFieldLabels();
//jQuery("div#form-phone > label").inFieldLabels();
//jQuery("div#form-message > label").inFieldLabels();

//apply alternate colors to a table (not a navigation thing but anyway)
jQuery(document).ready(function () {
    jQuery("tr:even").addClass("alternate");
});

