/*
   some javascripts
*/

$(function() {
	$("div.gallery a").fancybox({
		'imageScale' : true,
		'overlayShow' : false,
		'zoomSpeedIn' : 600,
		'zoomSpeedOut' : 500,
		'easingIn' : 'easeOutCirc',
		'easingOut' : 'easeInCirc'
	});
	$(window).resize(function () {
		var height = $(window).height();
			var bottom = height-739;			
		if ( height < 740 ) {
			$("#model").css({'bottom':bottom});
		} else {
			$("#model").css({'bottom':0});
		}		
	});
	$(window).resize();
	// Font replacement		
	if(!$.fontAvailable('stewardson') && !($.browser.name == 'msie' && $.browser.versionNumber == 6)) {
		Cufon.replace('span.title, span.date');
		Cufon.replace('#nav a', {
			textShadow: '3px 2px #000'			
		});
		Cufon.replace('#nav a', {
			hover: true,
			textShadow: '3px 2px #000'
		});
	}
});


