$(document).ready(function() {
	$("#bag-gallery a").click(function() {
		var bagpath = $(this).attr("href");
		var bagalt = $(this).attr("alt");
		var bagtitle = $(this).attr("title");
		$("#bagimage img").attr({ src: bagpath, title: bagtitle, alt: bagalt }); return false;
	});
});