$(document).ready(function() {
		
	$.sifr({path:'fonts'});
	$("#right h2").sifr({
		font: 'BaskervilleItalic',
		color: '#74040c',
		expressInstall: true,
		version: '9.0'
	});
	
	$('form .text').focus(function() {
		$(this).parent().css("background-color", "#CCCCCC");
	});
	
	$('form .text').blur(function() {
		$(this).parent().css("background-color", "#EEEEEE");
	});
	
	$('#left img').css("display", "none").fadeIn("slow");
	$('#home #right img').css("display", "none").fadeIn("slow");
	
});
