
 
 
// ----- 3D CAROUSEL ----- //
$(function() {
		$("#carousel").featureCarousel({
			carouselSpeed: 300,
			counterStyle:1
	});
});
// ----- 3D CAROUSEL ----- //



// ---- IMAGES PRELOADER ---- //

$(function () {
	$('.gallery img').hide();
});

var i = 0;
var int=0;
$(window).bind("load", function() {
	var int = setInterval("doThis(i)",200);
});

function doThis() {
	var images = $('.gallery img').length;
	if (i >= images) {
		clearInterval(int);
	}
	$('.gallery img:hidden').eq(0).fadeIn(300);
	i++;
}
// ---- IMAGES PRELOADER ---- //

// ---- IMAGES OPACITY ---- //
$(function() {	
	$(".gallery a img").hover(function(){
		$(this).stop().fadeTo('normal', 0.3);
		$('.gallery li').hover(function(){
			$(this).css({'background' : 'url(images/green_grey/icons/plus.png) no-repeat center center'});
		});
	}, function() {
		$(this).stop().fadeTo('fast', 1);
		});
});

// ---- IMAGES OPACITY ---- //
