$.fn.widget = function () {		return this.each(function () {		var open = 0;		var items = null;		items = $('.list li', this).hide();				$('.panel-list', this).hide();		$(this).append('<ul class="navigator"></ul>');				$('.navigator', this).append('<li class="prev"><a href="#" onclick="return false"><img src="/images/rotatorprev.png" alt="" /></a></li>');		$('.navigator', this).append('<li class="next"><a href="#" onclick="return false"><img src="/images/rotatornext.png" alt="" /></a></li>');				$('.prev a', this).click(function () {			return gotoPage(open - 1);              		});				$('.next a', this).click(function () {			return gotoPage(open + 1);                		});				$(items[open]).show();				function next(){			gotoPage(open + 1);		}				function gotoPage(x)		{			$(items[open]).fadeOut();			if(x>=items.length) { x=0; }			else if(x<0) { x=items.length-1; }			open=x;			$(items[open]).fadeIn();		}	});};openphoto=1;$(function() {	$('.text .photo').lightBox();	$('.lightbox').lightBox();	$('#main-rotator').widget();			$('#page-info .links-box li img').hover(		function() { $(this).fadeTo('fast', 0.5); },		function() { $(this).fadeTo('fast', 1); }	);	$('#main-portfolio .photo img').hover(		function() { $(this).fadeTo('fast', 0.5); },		function() { $(this).fadeTo('fast', 1); }	);	$('#portfolio .photo img').hover(		function() { $(this).fadeTo('fast', 0.5); },		function() { $(this).fadeTo('fast', 1); }	);	$('#work-right .gallery img').hover(		function() { $(this).fadeTo('fast', 0.8); },		function() { $(this).fadeTo('fast', 1); }	);	});function gotoPhoto(x){	$('#big-photo'+openphoto).fadeOut();	$('#big-photo'+x).fadeIn();	openphoto=x;}
