﻿$(document).ready(function() {
    $('.mailingListForm .textbox').focus(function() {
        if ($('.mailingListForm .textbox').val() == 'YOUR EMAIL ADDRESS') {
            $('.mailingListForm .textbox').val('');
        }
    });

    $('.cmsGallery a').rightClick(function(e) {
        alert('All images are copyright John Minary');
    });

    $('img').rightClick(function(e) {
        alert('All images are copyright John Minary');
    });

    $('.cmsGallery a').fancybox();
});


