(function ($) {
$(document).ready(function () {
	$('.decorate ul li, .decorate td, .decorate tr').decorate();
	// wraps hr in divs so that they can be more creatively styled
	$("hr").decorate();
});

// remove bc base mouse events
$(window).load(function () {
	$('.decorate ul li').each(function () {
		this.onmouseover = null;
		this.onmouseout  = null;
		
		var ob = $(this);
	
		ob.hover(
			function () { ob.addClass('hover') },
			function () { ob.removeClass('hover') }
		);
	});
});
})(jQuery);
