function setMenuHover() {

	$('#nav a').hover(function() {
		$(this).parent().css('background','url("img/bk_menu_item.png") center center no-repeat');
	}, function() {
		$(this).parent().css('background','none');
	});
/*	
	$('#nav a.active').hover(function() {
		$(this).parent().css('background','url("img/bk_menu_item.png") center center no-repeat');
	}, function() {
		$(this).parent().css('background','url("img/bk_menu_item.png") center center no-repeat');
	});
*/
}


/* Execute jQuery */
$(document).ready(function() {
	setMenuHover();
});

