Shadowbox.loadSkin('classic','/files/js/shadowbox/skin');Shadowbox.loadLanguage('en','/files/js/shadowbox/lang');Shadowbox.loadPlayer(['img','swf'],'/files/js/shadowbox/player');var options={resizeDuration:0.2,handleOversize:'resize',handleUnsupported:'remove',counterType:'skip',animSequence:'sync',continuous:true};$(function(){$('#content img[rel*="image"]').each(function(){var img=$(this);createHover(img);var full=img.attr('src').replace('graythumbs','full');img.parent().attr('href',full);});Shadowbox.init(options);$('#content img[rel*="movie"]').each(function(){var img=$(this);createHover(img);img.parent().click(function(){var params=new Array();var url='/3ddesign/studentarbeider/ajax_vimeo/'+this.id;$.ajax({type:'GET',url:url,success:function(data){params=data.split('|||');openVimeoModal(params[0],parseInt(params[1]),parseInt(params[2]));}});return false;});});});function openVimeoModal(message,width,height){Shadowbox.open({player:'html',content:'<div class=\"shadowbox_message\">'+message+'</div>',height:height+20,width:width+30});};function createHover(img){var color=img.attr('src').replace('graythumbs','colorthumbs');img.after('<img class=\"mouseover\" src=\"'+color+'\" />');$('img.mouseover').css({opacity:0}).hover(function(){$(this).stop().fadeTo(150,1)},function(){$(this).stop().fadeTo(500,0)});};