$(function() {
	$("#intro").innerfade({
			speed: 1500,
			timeout: 5000,
			type: 'sequence',
			containerheight: '543px'
		});

	$("#intro").bind("mouseenter", function() {
				$("div#slideshow_cont").fadeOut(1000);//css({"display": "none"});
			});
	$("#intro").bind("mouseleave", function() {
				$("div#slideshow_cont").fadeIn(1000);//css({"display": "block"});
			});
});
