$(function () {
    $('a[rel=external]').click(function(){
    	window.open(this.href);
    	return false;
    });
    
    $('a[rel=lightbox]').lightBox({
    	fixedNavigation: true,
		imageLoading: '/images/lightbox-ico-loading.gif',
		imageBtnClose: '/images/lightbox-btn-close.gif',
		imageBtnPrev: '/images/lightbox-btn-prev.gif',
		imageBtnNext: '/images/lightbox-btn-next.gif',
		imageBlank: '/images/lightbox-blank.gif'
    });
    
   	$('.carousel').jCarouselLite({
		auto: 3500,
		speed: 2000,
		visible: 3
	});


	$('div.group > div.grouptext').hide();
    $('div.group > h4').click(function(){
    	$(this).next('div.grouptext').slideToggle(600);
    	$(this).toggleClass('open');
    	return false;
    });
    
});

