window.onload = function () {

//top of page
$(".top").click(function(e){
 $('html, body').animate({scrollTop:0}, 'slow'); 
 return false;
});

$('#pics').cycle({ 
    fx:    'fade', 
	timeout: 3500,	
	speed:  3500, 
    pause:  1 
});
// png fix
$('img[@src$=.png], div#screen, #menu li a').ifixpng(); 



//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

};

