$(document).ready(function() {
	// Stuff to do as soon as the DOM is ready;
	//supersized background
	jQuery(function($){
		$.supersized({
			//Functionality
			slideshow: 1,
			start_slide: 1,
			slide_interval: 3000,
			transition: 1,
			navigation: 0,
			transition_speed: 1500, 
			performance: 2,
			random: 0,
			pause_hover: 0,
			keyboard_nav: 0,
			image_protect: 1,
			//size & position

			min_width: 0,
			min_height: 0,
			vertical_center: 1,
			horizontal_center: 1,
			fit_always: 0,
			fit_portrait:0,
			fit_landscape: 0,

			//components
			slides:  [ //slideshow images
				{image : 'img/cases/kwatta.jpg'},
				{image : 'img/cases/heinz.jpg'},
				{image : 'img/cases/WDP.jpg'},
				{image : 'img/cases/haelvoet.jpg'},
				{image : 'img/cases/heinz_game.jpg'},
				{image : 'img/cases/vitislife.jpg'},
				{image : 'img/cases/dn_id.jpg'}
				//{image : 'img/cases/schiesser.jpg'},
				//{image : 'img/cases/busworld.jpg'}
			]
		});
    });
	
	$('#dnsHome').mouseenter(function(){
		$('#dnsTip').show();
		$('#socialPopUp').hide();
		//set Buttons
		$('#twitterBtn').attr('src', 'img/social/twitter.png');
		$('#fbBtn').attr('src', 'img/social/fb.png');
		$('#linkedInBtn').attr('src', 'img/social/linkedIn.png');
	});
	$('#dnsTip').mouseleave(function(){
		$('#dnsTip').hide();
	});
	
	$('#content').mouseenter(function(){
		$('#socialPopUp').hide();
		//set Buttons
		$('#twitterBtn').attr('src', 'img/social/twitter.png');
		$('#fbBtn').attr('src', 'img/social/fb.png');
		$('#linkedInBtn').attr('src', 'img/social/linkedIn.png');
	});

});

