//<![CDATA[
hs.registerOverlay({
	html: '<div class="closebutton" onclick="return hs.close(this)" title="Close"></div>',
	position: 'top right',
	fade: 2 // fading the semi-transparent overlay looks bad in IE
});
 
 
hs.graphicsDir = '/highslide/graphics/';
hs.align = 'center';
//]]>

$(document).ready(function() { 
	$('#mycarousel1').jcarousel(); 
	$('#mycarousel2').jcarousel(); 
	$('#mycarousel3').jcarousel(); 
	
	
	$('.viewport').mouseenter(function(e) {
		$(this).children('a').children('img').animate({ height: '145', left: '0', top: '0', width: '241'}, 100);
		$(this).children('a').children('span').fadeIn(200);
	}).mouseleave(function(e) {
		$(this).children('a').children('img').animate({ height: '156', left: '-10', top: '-5', width: '260'}, 100);
		$(this).children('a').children('span').fadeOut(200);
	});
	
	
}); 

