$(document).ready(function() {
	try {
		if($('.main-slider')) {
			$('.main-slider').tabs('div.text', { 
		        effect: 'fade',
		        rotate: true 
		    }).slideshow({
		    	interval: 5000, 
		    	autoplay: true
		    });
		}
	
		if($('.testis')) {
			$('.testis').tabs('div.testimonials > a', { 
		        effect: 'fade', 
		        rotate: true 
		    }).slideshow({
		    	interval: 5000, 
		    	autoplay: true,
		    	next: '.next',
		    	prev: '.prev'
		    });
		}
		
		$('.main-content.about-us').scrollable({
			clickable: false,
			size: 1
		}).navigator({ 
			navi: '.subnav ul',
			indexed: true,
	        activeClass: 'active'
	    });
		
	} catch(e) {}
    
    $('INPUT.auto-hint').each(function(i, el){
        if($(this).val() == ''){
            $(this).val($(this).attr('title'));
        }
        $(el).focus(function(){
            if ($(this).val() == $(this).attr('title')) {
                $(this).val('');
            }       
        });
        $(el).blur(function(){
            if ($(this).val() == '') {
                $(this).val($(this).attr('title'));
            }
        });
    });
});
