﻿$(document).ready(function() {
	$('.sub-menu ul li a').hover(function() {
		$(this).stop().css('backgroundColor', '#3d342f');
	}, function() {
		$(this).stop().animate({ backgroundColor: '#fff8f3' });
	});

	$('div#header div#header-text h3').fadeIn(3000);

	$(function() {
		$('a.new-window').click(function() {
			window.open(this.href);
			return false;
		});
	});
});
