$(document).ready(function(event) {
 	// init hover   
	$('.menu_hover').hover(function () {
		$(this).css({
			backgroundImage: 'url(/img/menu_button_hover.png)',
			width: '10.75em',
			height: '1.75em'
		});
	},
	function () {
		$(this).css({
			backgroundImage: 'none',
			width: '10.75em',
			height: '1.75em',
		});
	});

	// init hover
	$('#menu_sub li a').hover(function () {
		$(this).css({
			backgroundColor: '#A34475'
		});
	},
	function () {
		$(this).css({
			backgroundColor: 'transparent',
		});
	});

});

