jQuery(document).ready(function() {
    

	    $("#maahapet").click(function() {
		$.fancybox([
			{
				'href'	: 'big/image005.jpg',
				'title'	: 'maahapet at night'
			},
			{
				'href'	: 'big/image007.jpg',
				'title'	: 'maahapet in the daytime'
			}
		], {
			'padding'			: 0,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'              : 'image',
			'changeFade'        : 0
		});
	});		 
          $("#farm").click(function() {
		  $.fancybox([
			'big/image015.jpg',
			'big/image017.jpg',
			'big/image019.jpg',
			''
		   ], {
			'padding'			: 0,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'              : 'image',
			'changeFade'        : 0
		});
	});	
		  $("#car").click(function() {
		  $.fancybox(
			['big/image021.jpg','big/image023.jpg'],
		{
		    'padding'			: 0,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'              : 'image',
			'changeFade'        : 0
		}
		            );
	});	

});

