jQuery(document).ready(function() {

	


	$("a.gallery_elements").fancybox();

$("#launch_gallery").click(function() {
		$.fancybox([
			'img/basket_photos/a_1.JPG',
			'img/basket_photos/a_2.JPG',
			'img/basket_photos/a_3.JPG',
			'img/basket_photos/a_4.JPG',
			'img/basket_photos/a_5.JPG',
			{
				'href'	: 'img/basket_photos/a_6.JPG',
				'title'	: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit'
			}
			
		], {
			'padding'			: 0,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'              : 'image',
			'changeFade'        : 0
			
		});
	});
	
});
