$(document).ready(function(){
/* ****** THESE FUNCTIONS ALL RUN AUTOMATICALLY ON DOCUMENT READY ****** */
	// look for special links and enhance according to relationship
	$('a[@rel=external]').addClass('externalLink').attr('target','_blank');
	$('a[@rel=email]').addClass('email');	
});

Shadowbox.loadSkin('classic', '/js/shadowbox/src/skin');

$(window).load(function(){ 
	var options = {
		animSequence: 'sync',
		counterType: 'skip'
    };

	Shadowbox.init(options);	
});

function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
}

