/*
 * Esther S White scripts for Szabo-Design.com
 *
*/
	
$(document).ready(function(){

	// Remove .no-js, add .has-js
	$('body').addClass('has-js').removeClass('no-js');

	$('.colorbox.verbatim').colorbox({
		maxWidth: '90%',
		maxHeight: '90%',
		inline: true
	});
	
	// Animate home navigation
	$('ul#navigation li a').animate({ opacity:0 }, 0 );
	$('ul#navigation li a').hover(
		function () { $(this).stop().animate({ opacity:0.7 }, 300 ); },
		function () { $(this).stop().animate({ opacity:0 }, 300 ); }
	);
	$('ul#navigation li.about a').animate({ opacity:1 }, 0 );
	$('ul#navigation li.about a').hover(
		function () { $(this).stop().animate({ backgroundColor: '#FFF' }, 300 ); },
		function () { $(this).stop().animate({ backgroundColor: '#EFEFEF' }, 300 ); }
	);

	
}); 
