/**
 * With Taste Snapshot Javascript [root/js/snapshot.js]
 *
 * Copyright 2007 StudioForty9. This code cannot be redistributed without
 * permission from http://www.studioforty9.com [info@sf9.ie]
 * 
 * Created: September 19, 2007
 */
$(function()
{
	$('#scroller a.snapshot').each( function(i) {
		$(this).click( function() {
			var img	= $(this).attr('href');
			$('#bnr_img img').attr('src', img);
			return false;
		});
	});
});