$(function(){
	//SOCIAL MEDIA HOVER
	if (navigator.appName != "Microsoft Internet Explorer") {
		$('.socialIcon').fadeTo(0, 0.7);
		$('.socialIcon').hover( function() {
			$(this).stop(true, true).fadeTo(300, 1);
		}, function() {
			$(this).stop(true, true).fadeTo(300, 0.7);
		});
	}

	//CUFON
	Cufon.replace('h1')('h2');

	//CYCLE ARTIKEL HOME
	$('#header_cycle').cycle({
		fx: 'fade',
		timeout: 4500
	});
	
	//MENU ADD |
	$('#lavaLampBasicImage>li').not(':last').append('|');
	
	//CYCLE NEWS ARCHIVE
	$('#newsArchive').cycle({
		fx: "scrollVert",
		timeout: 0,
		startingSlide:   0,
		pager:  '.pager',
		pagerAnchorBuilder: function(idx, slide) {
			return '<a href="#"> &bull; </a>';
		},

		before: function(slide,next){
				$("#newsArchive").animate({
				'height' :  $(next).height()
				}, 1000);
		}
	}, 500);
	
	//TRANSPARANTCY PHOTOGALLERY IMAGES
	$('#fotogallery a').fadeTo(0, 0.5);
	$('#fotogallery a').hover(
		function(){
			$(this).stop().fadeTo(300, 1);
		}, function(){
			$(this).stop().fadeTo(500, 0.5);
	});
	
	//FANCYBOX
		$(".fancybox").fancybox();

	//FANCYBOX FLOORPLANNER
		$("a.fancyboxIframe").fancybox({
			'width'				: '85%',
			'height'			: '85%',
			'autoScale'     	: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});

	//FANCYBOX PROJECTEN
	$("a.gallery").fancybox({
			titlePosition : 'inside',
			titleFormat   : function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-inside"><span class="floatRight" style="font-size: 10px; color: #333333;">' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span><span class="flaotLeft">'+title+'</span></span>';
			}
	});
	
	//NAV CENTER
	var width = 0;
	$('#nav>ul>li').each(function() {
		width += $(this).outerWidth(true)+1;
	});
	$('#nav>ul').width(width+'px');
});
