$(document).ready(function () {
	// buttons
	$('input.button').hover(function () {
		$(this).toggleClass('hover');
	});
	
	$('ul.products li').hover(function () {
		$(this).addClass('hover');
	}, function () {
		$(this).removeClass('hover');
	});
	
	$('ul.timeline li').hover(function () {
		$(this).addClass('hover');
	}, function () {
		$(this).removeClass('hover');
	});
	
	// make content box fit screen
	$('div#content').css('min-height', $(window).height());
	
	// hide honeypit
	$('textarea[name="message_2"]').css('display','none');
});
