var intransit = false;
$(document).ready(function() {
	/*Controls Bottom-to-top slider*/
	$('#contactinfo').mouseenter(function(){
		if(intransit == false){
			intransit=true;
			var t=setTimeout("enablebuttons()",1500);
			$(this).animate({
				top:-377
			},1000);
			$('#formslideup').animate({
				top:-377
			},1000);
		}
	});	
	$('#formminimize').mouseenter(function(){
		if(intransit == false){
			intransit=true;
			var t=setTimeout("enablebuttons()",1500);
			$('#contactinfo').animate({
				top:0
			},1000);
			$('#formslideup').animate({
				top:0
			},1000);
		}
	});
	$('#banner').cycle({ 
			fx: 'fade',
			speed: 1000,
			timeout: 7000
		});
});
function enablebuttons(){
	intransit = false;
	return true;
}
