// this is how you comment in javascript

$(function() {

	
	// alert("hello world");
	
	// basic jQuery structure
	// 1. select an html tag (ie. P), a class (.imgLeft) or an ID (#header)
	// 2. choose an EVENT (ie. click)
	// 3. choose an EFFECT (ie. fadeOut)
	
	// alert($.rotate('mailto:modelbox@me.com'));
	
    // this script obscures the email address
    $('#contact').attr('href', $.rotate13('znvygb:zbqryobk@zr.pbz'));
	
	//this makes the Fancybox Gallery work
	$("a[rel=gallery1]").fancybox({
		'titleShow'	:	true
	});  // captions are disabled

});
