jQuery(document).ready(function($) {
	// Code that uses jQuery's $ can follow here.
	
	/*
	setFancyBox();
	
	maxWidth = $(window).width() * 0.75;
	
	$('.gallery a').attr('rel', 'gallery_group');
	
	
	$('a[rel=gallery_group]').each(function() {
		var href = $(this).attr('href');
		href = href.replace('http://', '');
		href = href.replace('www.', '');
		href = href.replace('sarahtphotography.com', '');
		href = 'inc/phpThumb/phpThumb.php?src='+href+'&w='+maxWidth;
		$(this).attr('href', href);
		$(this).fancybox();	
	});
	
	
	
	$(window).resize(function() {
		maxWidth = $(window).width() * 0.75;
		
		$('a[rel=gallery_group]').each(function() {
			var href = $(this).attr('href');
			href = href.replace('http://', '');
			href = href.replace('www.', '');
			href = href.replace('sarahtphotography.com', '');
			href = 'inc/phpThumb/phpThumb.php?src='+href+'&w='+maxWidth;
			$(this).attr('href', href);			
		});
		
	});
	*/
	
});


