	$(document).ready(function() {
		$(".slidetabs").tabs("#slideshow > div#wrap_slide", {
			effect: 'fade',
			fadeOutSpeed: "slow",
			rotate: true
		}).slideshow({autoplay: true});
		$('#home').fadeIn(1000);
		$(".nav, .top, .footer").localScroll( {
			target : ".scroll_part",
			queue : true,
			axis : 'x',
			duration : 0

		});
		$('.nav').lavaLamp( {
			fx : "backout",
			speed : 900
		});
		$('.nav_company').click(function() {
			$('#company').fadeIn('1000');
			$('#home, #services, #contacts, #solutions, #ftp').fadeOut('fast');
		});
		$('.nav_home, .logo').click(function() {
			$('#home').fadeIn('1000');
			$('#company, #services, #contacts, #solutions, #ftp').fadeOut('fast');
		});
		$('.nav_services').click(function() {
			$('#services').fadeIn('1000');
			$('#company, #home, #contacts, #solution, #ftps').fadeOut('fast');
		});
		$('.nav_solutions').click(function() {
			$('#solutions').fadeIn('1000');
			$('#company, #services, #contacts, #home, #ftp').fadeOut('fast');
		});
		$('.nav_contacts').click(function() {
			$('#contacts').fadeIn('1000');
			$('#company, #services, #solutions, #home, #ftp').fadeOut('fast');
		});
		$('.nav_ftp').click(function() {
			$('#ftp').fadeIn('1000');
			$('#company, #services, #solutions, #home, #ftp').fadeOut('fast');
		});
		$('.nav li').click(function() {
			$('.nav li').removeClass('current');
			$(this).addClass('current');
		});
		
		Cufon.replace('h2', {
			fontFamily : 'GrotzecDemi'
		});
		Cufon.replace('h3', {
			fontFamily : 'GrotzecDemiCh'
		});

	});
