$(document).ready(function() {

	$('#search_form').submit(function(event) {

		$.ajax({
				type		: "POST",
				cache		: true,
				url			: "/index.php/_embeds/search_results/",
				data		: $(this).serializeArray(),
				success: function(data) {
					$.fancybox(
						data,
						{
				        	'autoDimensions'	: 	true,
							'autoScale'			: 	false,
							'centerOnScroll'	: 	false,
							'overlayOpacity'	:  	.8, 
							'overlayColor'		:	"#ffffff",
							'padding'			:	40, 
							'scrolling'			: 	'no',
							'titlePosition'		:	'over'
						}
					);
				}
			});

	  	return false;
	});

});
