$(document).ready(function() {
	
	$('#toggle_recission').hide();
	$('#toggle_conditions').hide();
	
	$(".trecission").click(function () {
		$('#toggle_recission').toggle('slow');
	});

	$('.tconditions').click(function () {
		$('#toggle_conditions').toggle('slow');
	});
        $('.jZoom').jqzoom({
            zoomType: 'standard',  
            lens:true,  
            preloadImages: true,  
            alwaysOn:false,  
            zoomWidth: 350,  
            zoomHeight: 230  
        });
});


