$(document).ready(function()
{
  $("div.index_alumina").mouseover(function ()
  {
    $(this).addClass("index_alumina_hover");
  });

  $("div.index_alumina").mouseout(function ()
  {
    $(this).removeClass("index_alumina_hover");
  });
});

$(document).ready(function()
{
  $("div.index_workshop").mouseover(function ()
  {
    $(this).addClass("index_workshop_hover");
  });

  $("div.index_workshop").mouseout(function ()
  {
    $(this).removeClass("index_workshop_hover");
  });
});

$(document).ready(function(){
						   
	$(".pane-list").click(function(){
    	window.location=$(this).find("a").attr("href");
		return false;
	});
	/*$(".pane-list").click(function(){
		window.open($(this).find("a").attr("href"));
		return false;
	});*/

});

/************/

