// JavaScript Document
function inithome(){
	
	$(document).pngFix();
	
	$('.buttonHome').hover(
	
		function() {
			
			$(this).stop();
			$(this).animate({"backgroundColor": "#000", "color" : "#fff"}, timeOver);
			
		},
	
		function() {
			
			$(this).stop();
			$(this).animate({"backgroundColor": "#fff", "color" : "#000"}, timeOver);
			
		}
	
	);
	
}
