$(document).ready(function(){
	// customer area link hover effect
	$('#customer-area').hover(
		function(){// On
			$(this).attr('src', '/images/button_customer-area.gif');
		},
		function(){// Off
			$(this).attr('src', '/images/button_customer-area_off.gif');
		}
	);
});

$(document).ready( function() {
	// stripe table
	$('table.striped tbody tr:odd').addClass('odd');
});