

$(function() {
	

		$(".fancy-gallery a").fancybox();

		$('.fancy_panorama').fancybox(
		{
			'zoomOpacity': true,
			'zoomSpeedIn': 500,
			'zoomSpeedOut': 500,
			'overlayShow': true,
			'frameWidth': 1055,
			'frameHeight': 840,
			'hideOnContentClick': false
		});
		
		
});


/* ### text resizer */

jQuery(document).ready( function() {

	jQuery( "#textsize a" ).textresizer({
		target: "#mcont",
		type: "cssClass",
		sizes: [ "small", "medium", "large" ]
	});
	
});		
		
		
/* ### end */


$(function() {
 $('.answer').hide();
 $('#faq h3').toggle(
	   function() {
	   $(this).next('.answer').fadeIn();
		 $(this).addClass('close');
		},
		function() {
		  $(this).next('.answer').fadeOut();
			$(this).removeClass('close');
	  }
	);
});










