$(function()
{	
  //Commons
 	activateColorbox();
})


function activateColorbox(){
	$("a[class='colorbox']").colorbox({
        transition: "elastic",
        title: function () {
            return $(this).children().attr('alt');
        }
    });
 }

