$(document).ready(function(){	
	
	
	// Seccion de la web
	// ---------------------------------------
	url     = document.location.href;
	partes  = url.split('/');
	seccion = partes[partes.length-1];
	seccion_previa = partes[partes.length-2];			
	// ---------------------------------------
	

	// ZOOM OBRA
	
	if (seccion_previa.match('zoom_obra')) {	

		$('div.mousewheel').mousewheel(function(){
			return false;
		});
			
	}


	
	

	
			
});