$j(document).ready( function() {
	$j('.gallery_thumbs li a').bind('click', function() {
		$j('.gallery_thumbs a.active').removeClass('active');
		$j(this).addClass('active');
		$j('.gallery_mainimg img').attr('src', $j(this).attr('href')).attr('alt', $j(this).find('img').attr('alt'));
		$j('.gallery_mainimg p').html($j(this).find('img').attr('alt'));
		return false;
	});
	
	if ($j('.gallery_thumbs > a').length > 2) {
		$j('.gallery_thumbs div.left_arrow a').bind('click', function() {
			$j('.gallery_thumbs a.active').prev('a').click();
			return false;
		});
		$j('.gallery_thumbs div.right_arrow a').bind('click', function() {
			$j('.gallery_thumbs a.active').next('a').click();
			return false;
		});
	} else {
		$j('.gallery_thumbs div.left_arrow a, .gallery_thumbs div.right_arrow a').hide();
	}
});
