$(function(){

 	
	/* Home page reflections */
	$(".library-samples img").reflect({height: 0.3, opacity: 0.4});
	/* Header Image replacment */
	$('h2.img').each(function() {
		string = $(this).text();
		filename = string.toLowerCase().replace(/ /g, '-').replace(/([^0-9a-z-])/g,'');
		$(this).html('<img src="/i/' + filename + '.png" alt="' + string + '" />');
	});
	/* PNG FIX */
	$("h2.img, #intro").pngFix();
	/* Carousel */
	$(function() {
	
	    var t = 10000;
	    var i = setInterval("$('.application-gallery').nextSlide()", t);
	    var s = $('.application-gallery');
	    s.slideGallery();	    
        s.hover(
          function () {
            clearInterval(i);
          }, 
          function () {
            i = setInterval("$('.application-gallery').nextSlide()", t);
          }
        );
    });
});
	
