/* xxxxxxxxxxx nivo slider xxxxxxxxxxx */
$(window).load(function() {
    $('#slider').nivoSlider();
});

/* xxxxxxxxxxx fancybox xxxxxxxxxxx */
$(document).ready(function() {
	$("a.fancybox").fancybox();
});

/* xxxxxxxxxxx fade in/out xxxxxxxxxxx */
$(function() {
	// opacity of button set to 100%
	$(".fadeFX").css("opacity","1");
	// on mouse over
	$(".fadeFX").hover(function () {
		// set opacity to 80%
		$(this).stop().animate({
			opacity: 0.8
	}, "fast");
},
// on mouse out
function () {
	// set opacity back to 100%
	$(this).stop().animate({
		opacity: 1
		}, "fast");
	});
});
