$(function(){
	if ($('#fader img').length>0) {
	var fader;
	$('#fader img').simpleFade({
		speed    : 2000,
		duration : 3000,
		auto     : true,
		init : function () {
			fader = this;
		}
	});
	}
	
	$('#navigation li').hover(
		function(){ 
			$(this).find('ul').eq(0).show();
	 	},
		function () {
	 		$(this).find('ul').eq(0).hide();
 	});
});
