$(document).ready(function(){	
						   
	// Featured projects carousel
	$(".feat_projects").jCarouselLite({
        visible: 5,  
        auto:4000,  
        speed:1000,
		scroll:1,
		easing:'swing',
       	btnNext: ".next",
       	btnPrev: ".prev"
    });
	
	// Testimonials carousel
	$(".testimonials").jCarouselLite({
		vertical:true,									 
        visible: 1,  
        auto:4000,  
        speed:1000,
		scroll:1,
		easing:'swing',
       	btnNext: ".next2",
       	btnPrev: ".prev2"
    });	

	
	//Subscribe Field Text disappearance
	//-------------------------------
	$('#subscribe_field').example(function() {
		return $(this).attr('title');
	});
	
	//lightbox on images
	//-------------------
	$("a[rel^='lightbox[group1]']").lightBox();
	$("a[rel^='lightbox[group2]']").lightBox();
	$("a[rel^='lightbox[group3]']").lightBox();
	$("a[rel^='lightbox[feat]']").lightBox({showNumbers:false});
	
	
	
}) // end document.ready call