$(document).ready(function() {

	 // image rotation 
	if($("#contentpic ul li").length > 1) {

	  $("#contentpic ul").innerfade({
	  speed: 2000,
	  timeout: 4000,
	  containerheight: '136px'
	});
	
	}
	
	// navi - focus on navi blend the rest out ;P
	
	$('#navigation ul').hover(function(){
		$('#main').stop().animate({'opacity': '0.4'}, 400); 
	}, function(){
		$('#main').stop().animate({ 'opacity': '1' }, 400, function(){
			   if($.browser.msie){
				this.style.removeAttribute('filter'); 
			   }
		});
	});


	// this will disable the right mouse click menu  
	
	
	$('img').mousedown(function (b) {
		if(b.which == 3){
		alert('© MOORGUT KARTZFEHN VON KAMEKE GMBH & CO. KG');
		
		$(document)[0].oncontextmenu = function() {return false;}
		}
	});


});
