window.onload = function () {
//google maps
//load();
	
//Hide before the fade
//Hide before the fade
$('#header #login-form').hide();

// png fix
$('img[@src$=.png], div#screen, pics, #menu li a').ifixpng(); 

// accordian
$("#offices").accordion({ header: 'h3' });

//menu
$('#menu').superfish({ 
            delay:       250,                       
            animation:   {height:'show'},
            speed:       'fast',                     
            autoArrows:  false,             
            dropShadows: false,
			pathClass:  'current' 
		//	onBeforeShow:  function(){$('#header #screen').show(1);},       
		//	onHide:        function(){$('#header #screen').hide(1);} 			                   
        }); 

//images
$.fn.cycle.defaults.timeout = 6000;
$(function() {

	$('#s7').cycle({
		fx:    'scrollUp',
		delay: -1000,
		cleartypeNoBg: true
	});
	
	
	
	$('#pics').cycle({ 
		fx:    'fade', 
		timeout: 5000,	
		speed:  2500, 
		pause:  15,
		cleartypeNoBg: true
	});

});

//login

$("#login").click(function(e){
 $("#login-form").slideDown("slow");
});

$(".close").click(function(e){
 $("#login-form").slideUp("slow");
});

//top of page
$(".top").click(function(e){
 $('html, body').animate({scrollTop:0}, 'slow'); 
 return false;
});

};

