var rolls = {
	sensors: [185, 10],
	cutoff: [294, 50],
	display: [51, 10],
	cable: [330, 65],
	supply: [0, 0]
};

// прелоад
var prefixes = ['list', 'control'];
for (i in prefixes) {
	for (id in rolls) {
		var tmpImg = new Image();
		tmpImg.src = '/img/' + prefixes[i] + '_' + id + '_roll.gif';
	}
}

$(function(){
	$('#shelf img').hover(function() {
		if (rolls[this.id]) {
			// меняем картинки-на-полке
			$(this).attr('old_src', $(this).src());
			$(this).src('/img/list_' + this.id + '_roll.gif');
		
			// меняем картинки-на-пульте
			$('#control').src('/img/control_' + this.id + '.gif');
			$('#control').css({
				marginLeft: rolls[this.id][0],
				marginTop: rolls[this.id][1]
			});
		}
	}, function() {
		$(this).src($(this).attr('old_src'));
		$('#control').src('/img/empty.gif');
	});
});

