jQuery.noConflict();

(function($) {
	$(document).ready( function () { 
		$('button').bind('mouseover', function() {
			$(this).addClass('hover');
		});
		$('button').bind('mouseout', function() {
			$(this).removeClass('hover');
		});
	});
})(jQuery);

