

$(document).ready(function() {

	$('div.flash').cycle({
		fx: 'fade',
		timeout: 5000,
		speed: 2000
	});

	$('form.fom').css('display', 'none');

		$("div.flash").click(function () {

			$("form.fom").slideToggle(750);
			return false;
		});

});
