(function($) {
	$(document).ready(function() {
		$('#events').hover(
			function () {
				$(this).css('background', 'transparent url(themes/blackcandy/images/events_btn_hover.png) no-repeat scroll 0 0');
			},
			function () {
				$(this).css('background', 'transparent url(themes/blackcandy/images/events_btn.png) no-repeat scroll 0 0');
			}
		);

		$('#news').hover(
			function () {
				$(this).css('background', 'transparent url(themes/blackcandy/images/news_btn_hover.png) no-repeat scroll 0 0');
			},
			function () {
				$(this).css('background', 'transparent url(themes/blackcandy/images/news_btn.png) no-repeat scroll 0 0');
			}
		);

		$('#directory').hover(
			function () {
				$(this).css('background', 'transparent url(themes/blackcandy/images/directory_btn_hover.png) no-repeat scroll 0 0');
			},
			function () {
				$(this).css('background', 'transparent url(themes/blackcandy/images/directory_btn.png) no-repeat scroll 0 0');
			}
		);
	});
})(jQuery);