//PRODUCT MENU
$(document).ready(function()
{
	$("#firstpane .arrow").click(function()
    {
		$(this).css({backgroundImage:"url(/t/rental/images/arrow_down.png)"}).next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("slow")
       	$(this).siblings('.arrow').css({backgroundImage:"url(/t/rental/images/arrow_right.png)"});
	});
});

$(document).ready(function()
{
	$("#firstpane .menu_head2").click(function()
    {
		$(this).css({backgroundImage:"url(/t/rental/images/arrow_down.png)"}).next(".menu_body2").slideToggle(300).siblings(".menu_body2").slideUp("slow")
       	$(this).siblings('.menu_head2').css({backgroundImage:"url(/t/rental/images/arrow_right.png)"});
	});
});

//IMAGE ZOOM
  /*$(document).ready(function(){
	  $(function() {
		  
		  var options2 =
		  {
			  zoomWidth: 300,
			  zoomHeight: 200,
			  zoomType:'standard'
		  }

		  $(".jqzoom2").jqzoom(options2);   //da sistemare top/bottom

	  });

  $('.expand').click(function(){
	  var href= jQuery(this).attr('href');
	  var elclass = href.match('#([a-zA-Z]+)([0-9]+)');

	  if(elclass[1] == 'html')
	  {
		  jQuery('.html'+elclass[2]+'div').show();
		  jQuery('.js'+elclass[2]+'div').hide();
	  }else
	  {
		  jQuery('.html'+elclass[2]+'div').hide();
		  jQuery('.js'+elclass[2]+'div').show();
	  }
	  jQuery(this).addClass('alert').siblings('a').removeClass('alert');
	  return true;
  });

  });*/
  



