// maxsell Werbeagentur & Partner GmbH
// 18.05.2010 / Julian Winkel


// Button Animation
$(document).ready(function(){
	
// Animierte buttons
//$('.button').animate({color:'#ffffff'},300);
$('.buttonarea a').mouseover(function(){					
	$(this).animate({color:'rgb('+randomColor()+')',backgroundColor:'rgb('+randomColor()+')'},80);				  
}).mouseout(function(){
	$(this).animate({color:'rgb(0,0,0)',backgroundColor:'rgb(255,255,255)'},80);
});

//alert(randomColor);



});


// FUNCTIONEN
function randomColor(){
		zr=Math.round(Math.random()*255);
		zg=Math.round(Math.random()*255);
		zb=Math.round(Math.random()*255);
		rgbHTMLColor = zr+','+zg+','+zb;
		return rgbHTMLColor;
}
