/**
* Author: Rene Maas
* Date: 2010-03-28
* Version: 1.1
**/

jQuery.noConflict(); //no problems with other libarys

jQuery(document).ready(function() {
	jQuery('ul#language li a').css({
   		opacity:0.5
	}).hover(function(){
		jQuery(this).stop(true, true);
		jQuery(this).fadeTo('normal', 1);
	},
	function(){ 
   		jQuery(this).fadeTo('normal', 0.5);
	});
	
	jQuery('a#branding, ul#navi li a, #sidebar a img, .accBtn, #footer ul li a').css({
   		opacity:1
	}).hover(function(){
		jQuery(this).stop(true, true);
		jQuery(this).fadeTo('normal', 0.65);
	},
	function(){ 
   		jQuery(this).fadeTo('normal', 1);
	});
});



