$().ready(function() {
	var $images = $('#magazine .articles .image');

	$images.mouseover(function() {
		var index = parseInt($(this).attr('rel'), 10);
		
		if (index > 0) $('#content .gallery').gallery('change', index);																
	});
});
