function initStartseite()
{
	$.each( $('#works li a'), function()
	{
		$(this).data( 'title', $(this).html() ).fancybox({
			'titlePosition'  : 'inside'
		});
	});


	$('#works li').bind("mouseenter", function()
	{		
		$(this).find('h4').animate({
			opacity: 0.8,
			bottom: 0
		}, 300);

		if( !$(this).find('img').hasClass('over') )
		{
			$(this).find('img').clone().appendTo(this).addClass('over');
		}		

		$(this).find('img.over').animate({
			opacity: 0
		}, 0).animate({
			opacity: 1
		}, 300);

	}).bind("mouseleave", function()
	{
		$(this).find('h4').animate({
			opacity: 0.8,
			bottom: -42
		}, 300);

		$(this).find('img.over').animate({
			opacity: 0
		}, 300);
	});

        $.each( $('#connect li a'), function()
	{
		$(this).animate({
			opacity: 0.4
		}, 0);
	});

        $('#connect li a').bind("mouseenter", function()
	{
		$(this).animate({
			opacity: 1
		}, 300);

	}).bind("mouseleave", function()
	{
		$(this).animate({
			opacity: 0.4
		}, 300);
	});
}

$(document).ready(function() {
	if( $("body").hasClass('startseite') )
	{
		initStartseite();
	}
});
