<!--
// No rightclick script v.2.5
// Don't delete this header!

var message="Our lawyers want you to know: All images and other media content on this site have been copyrighted. By right-clicking to save an image on this page, you are violating U.S. Copyright Statutes. If you steal our images, and then misrepresent our images as your own, we will seek legal action against you. Rather than taking images that belong to others, you should instead be striving to create your own unique work." // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
                

