$(document).ready(function() {
	$('.dropdown').hide();
	dropdown();
	$('.photobox .floatimg').cycle({
			fx: 'fade',
			timeout: 1500,
			speed: 2000
		});
	$('#news').cycle({
			fx: 'scrollHorz',
			timeout: 0,
			speed: 800,
			next: '#next',
			prev: '#back'
		});
	$('#next, #back').click(function(){
		return false;
	});
});

dropdown = function() {
	$('.what, .visual').hover(function(e){
		$('.dropdown').hide();
		$(this).find('.dropdown').show();
	}, function(){
		$('.dropdown').hide();
	});
}
