$(document).ready(function(){ 
		$('ul.sf-menu').superfish({ 
            delay:       500,                            // one second delay on mouseout 
            animation:   {height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  true,                           // disable generation of arrow mark-up 
            dropShadows: true                            // disable drop shadows 
        });
		
		$('#imgs_cycle').cycle({ 
			fx:    'fade', 
			speed:  1000,
			timeout:  4000 
		});
		
		$('A[rel="external"]').click( function() {
			var winl = (screen.width - 600) / 2;
			var wint = (screen.height - 400) / 2;
			winprops = 'height=400,width=600,top='+wint+',left='+winl+',toolbar=no,resizable=no,directories=no,status=no,menubar=no,scrollbars=yes';	
			
			window.open( $(this).attr('href'),'popup_w', winprops);
			return false;
		});
}); 
