$(document).ready(function() {
	////////////////////////////////////////
	// Home page rollover script
	$('.rollout').each(function(){
		$(this).children("div").hide();
		$(this).hoverIntent({
			sensitivity: 1,
			interval: 200,
			over: makeVisible,
			timeout: 200,
			out: makeInvisible
		});
		function makeVisible(){
			$('.rollout').children("div").hide();
			$(this).children("div").slideDown("fast");
		};
		function makeInvisible(){
			//$(this).children("div").slideUp("fast");
			$(this).children("div").hide();
		};
	});
});
