$(document).ready(function(){
	//startfade
	$('a.intro').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	$('a.projects').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	$('a.print').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	$('a.internet').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	$('a.euprojects').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	$('a.realizations').click(function(){
		$('#gallery').fadeIn('fast');
		$('#center').hide();
	});
	$('a.offer').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	$('a.contact').click(function(){
		$('#gallery').fadeOut('fast');
		$('#center').show();
	});
	//endfade
	$("#bottom").tabs();
	// formularz kontaktowy
	$("#contactform").ajaxForm(function(data){
	if (data==1) {
		$("#success").fadeIn("fast");
		$("#badserver").hide();
		$("#bademail").hide();
		$("#contactform").resetForm();
	} else if (data==2) {
		$("#badserver").fadeIn("fast");
	} else if (data==3) {
		$("#bademail").fadeIn("fast");
		$("#email").css('background-color', '#f39f9f');
		$("#message").css('background-color', '#f39f9f');
	}
	});
});
