$(document).ready(function() {
	$('ul.children').css('display','none');
	$('#nav ul li').hoverIntent(function() {
		$(this).find('ul.children').show('fast');
	}, function() {
		$(this).find('ul.children').hide('fast');
	});
	$('.button').hoverIntent(function() {
		$(this).animate({ 
			backgroundColor: '#f2f2f2', 
			borderTopColor: '#6eced1',
			borderLeftColor: '#6eced1',
			borderRightColor: '#6eced1',
			borderBottomColor: '#6eced1'
			}, 200);
	},function() {
		$(this).animate({ 
			backgroundColor: '#ffffff',
			borderTopColor: '#ffffff',
			borderLeftColor: '#ffffff',
			borderRightColor: '#ffffff',
			borderBottomColor: '#ffffff'
			}, 200);
	});
});

$(function(){
	var originalTitle;
	$("a, img").bind({
		mouseenter: function(event){
			$(this).attr("title", "");
		},
		mouseout: function(){
			$(this).attr("title", originalTitle);
		}
	});
});
