jQuery(document).ready(function() {
	
	$('A[rel="external"]').click(function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	/**
	 * motive frontpage
	 */
	(function fadeElements(elements) {
    	elements.eq(0).fadeIn(700, function() {
        	(elements=elements.slice(1)).length && fadeElements(elements);
	    });
	})
	($('#start #motive li, #start #main .motive'));
	
	$('#start #motive li a').hover(function() {
		$(this).stop().animate({
	      opacity : 0.7
	    }, 'fast');
	}, function() {
		$(this).stop().animate({
	      opacity : 1
		}, 'fast');
	});

	/**
	 * call zoom function
	 */
	$("#motive #main .lb").fancybox({
		'titleShow': false,
		'transitionIn': 'none',
		'transitionOut': 'none'
	});
	
});

/**
 * hide frontpage images and additional elements
 */
$('#start #motive li, #start #main .motive').hide()
