	$(document).ready(function() { 

		$text = $("li:first").attr('rel');	
		$('#work_info').html($text);


		$("#work_holder").jCarouselLite({
			btnNext: "#next",
			btnPrev: "#prev",
			visible: 1,
			auto: 10000,
			speed: 1000,
			beforeStart: function(a) {
				$('#work_info').html('<img src="/images/general/ajax-loader.gif" width="550" height="30" /><br/><span>&nbsp;</span>');
			},
			afterEnd: function(a) {
				$('#work_info').html(a.get(0).getAttribute("rel"));
			}
		});					

		$('a.email').nospam({
			replaceText: true, 
			filterLevel: 'normal'
		});

	
	}); 
	
