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