/*

	Cantine Bolla
	----------------------

	@file 		bolla_js_lib.js
	@version 	1.0.0b
	@date 		2009-08-03 22:38:23 +0200 (Mon, 3 Aug 2009)
	@author 	Casale Francesco <ibook@nuguerrilla.com>

	Copyright (c) 2009 Nuguerrilla <http://www.nuguerrilla.com>

*/

$(document).ready(function(){

   	//$("#accordion_mondo_bolla").accordion({autoHeight: false},{header: 'h2' });
   	 
	$("#storia_accordion").accordion({ autoHeight: false },{header: 'h2' },{ icons: { header: 'normal', headerSelected: 'selected' } });
	
    
     
     $(".maxi").click(function(event){
     var loc = $(".maxi").attr("title");
     //alert(loc);
     window.location.href=loc;
     event.preventDefault();
     });
     
     $(".mini").click(function(event){
     //var loc = $(".mini").attr("title");
     var loc = $(this).attr("title");
     //alert(loc);
     window.location.href=loc;
     event.preventDefault();
     });
	
 });
