
$(document).ready(function(){
	$(document).pngFix();
	$(".button").hover(
		function(){
			$(this).addClass('hover');
		},
		function(){	
			$(this).removeClass('hover');
		}
	);
});
