$(document).ready(
	function($) {
	var postfix = '_on';
	$('div a img.roll').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});
$(document).ready(function () {
	var overRoll = 0;
	$('ul#nav li.acd').hover(
	function () {
		$(this).children('ul').slideDown('medium');
	},
	function(){
		$(this).children('ul').slideUp('medium');
	});
});
