

jQuery(document).ready(function() {

/* LIGHTBOX - FANCYBOX */
if( $("a[href$=.jpg],a[href$=.JPG],a[href$=.Jpg],a[href$=.png],a[href$=.PNG],a[href$=.gif],a[href$=.GIF]") !== null)
{
$("a[href$=.jpg],a[href$=.JPG],a[href$=.Jpg],a[href$=.png],a[href$=.PNG],a[href$=.gif],a[href$=.GIF]").fancybox();
}

var fadespeed = 200;
var fadespeedout = 200;


jQuery("#konsepti").mouseover(function () {
	//jQuery("#konseptihover").fadeTo(0, 1, function() {
		jQuery("#konseptiactive").fadeTo(fadespeed, 0);
	//});
});

jQuery("#konsepti").mouseout(function () {

jQuery("#konseptiactive").fadeTo(fadespeedout, 1);
});

jQuery("#ihmiset").mouseover(function () {
jQuery("#ihmisetactive").fadeTo(150, 0);
});

jQuery("#ihmiset").mouseout(function () {
jQuery("#ihmisetactive").fadeTo(150, 1);
});

jQuery("#toteutus").mouseover(function () {
jQuery("#toteutusactive").fadeTo(fadespeed, 0);
});

jQuery("#toteutus").mouseout(function () {
jQuery("#toteutusactive").fadeTo(fadespeedout, 1);
});



	//Sosiaalisten medioiden painikkeiden animaatio
	jQuery(".some-buttons a").mouseover(function () {
		jQuery("img", this).stop().animate({
			top : "-3px"
		}, "fast");
		
	});
	
	

	jQuery(".some-buttons a").mouseout(function () {
		jQuery("img", this).stop().animate({
			top : "0px"
		}, "fast");
		
	});
	
	
	
	
	
});

