$(document).ready(function(){	


						   
	// Featured projects carousel
	$(".featclients").jCarouselLite({
        visible: 9,  
        auto:4000,  
        speed:1000,
		scroll:1,
		easing:'swing',
		random: true,
       	btnNext: ".next",
       	btnPrev: ".prev"
    });
	
	// Testimonials carousel
	$(".testimonials").jCarouselLite({
		vertical:true,									 
        visible: 1,  
        auto:4000,  
        speed:4000,
		scroll:1,
		easing:'swing',
       	btnNext: ".next2",
       	btnPrev: ".prev2"
    });	
	
	
	


//Activate Immediately
jQuery(function() {

    $(".delme").focus(function(){
        if ($(this).is('input')) {
            var orival = $(this).val();
            $(this).val("");
        }else{
            var orival = $(this).html();
            $(this).html("");
        }

        $(this).blur(function(){
            if($(this).is('input')){
                if ($(this).val() != "" && $(this).val() != orival) {
                    $(this).removeClass('delme').unbind('blur').unbind('focus');
                }else{
                    $(this).val(orival);
                }
            }else{
                if ($(this).html() != "" && $(this).html() != orival) {
                    $(this).removeClass('delme').unbind('blur').unbind('focus');
                }else if ($.browser.safari && $(this).val() != "" && $(this).val() != orival) {
                    $(this).removeClass('delme').unbind('blur').unbind('focus');
                }else{
                    $(this).html(orival);
                }
            }

        });
    });
}) 
}) // end document.ready call
