$(document).ready(function(){
	$('div.leistungen div.element:not(:first)').hide();
	$('div.portfolio .element').hide();
	$('div.ilove div.iloveexpand').hide();

	$('div#websitechck').css('height','71px');
	$('#navigation a:first').addClass('active');
	$('div.leistungen').css('height','140px');
	
	$('#navigation a').click(function() {
		$('#navigation a').removeClass('active');
		var itemid = $(this).attr('id');
		$(this).addClass('active');
		$('div.leistungen div').hide();
		$('div.leistungen div.'+itemid+'').show();
		return false;
	});
	
	$('.portfolio .toggler').click(function() {
		$(this).parent().find('.element').slideToggle();
		return false;
	});
	
	$('.ilove a.more').click(function() {
		$(this).parent().next().slideToggle();
		return false;
	});
	
	$(".portfolio a.portfolio_small,.seminar a.portfolio_small").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
	});
	$("a.websitecheck_toggler").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'height'		: 300,
				'width'			: 600,
				'autoDimensions': false
	});
	
	/*
	var websitecheck_content = $('div#websitecheck').html();
	$('#websitecheck').remove();
	$('body').prepend('<div id="websitecheck">'+websitecheck_content+'</div>');
	
	*/

 });

