$(document).ready(function() {

	// Initialize the navigation rollovers
	$('#main_nav a').each(function() {
		$(this).hover(function(){
			$(this).css('background', 'url(/blog/wp-content/themes/neoclassical-temp/images/nav/nav-' + $(this).attr('id') + '-on.gif) no-repeat');
		},function(){
			$(this).css('background', 'none');
		});
	});
	
});


