$(document).ready(function(){

$("a.home").tooltip({ effect: 'slide', position:"bottom center", offset: [30, 0],});
$("a.product").tooltip({ effect: 'slide', position:"bottom center", offset: [30, 0],});
$("a.contact").tooltip({ effect: 'slide', position:"bottom center", offset: [30, 0],});

$(".moresign").hover(function() {
                $(this).stop().animate({ backgroundColor: "#333" }, 200);
        },function() {
                 $(this).stop().animate({ backgroundColor: "#d6dee2" }, 400);
        });

$("a[rel*=fancybox]").fancybox();

						   });

$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'random', // sliceDown, sliceDownLeft, sliceUp, sliceUpLeft, sliceUpDown, sliceUpDownLeft, fold, fade, random
		slices:30,
		animSpeed:500,
		pauseTime:3000,
		directionNav:true, //Next and Prev
		directionNavHide:false, //Only show on hover
		controlNav:true, //1,2,3...
		pauseOnHover:true, //Stop animation while hovering
		beforeChange: function(){},
		afterChange: function(){}
	});
});

