$(document).ready(function() {
	try {
		if($('.main-slider')) {
			$('.main-slider').tabs('div.text', { 
		        effect: 'fade',
		        rotate: true 
		    }).slideshow({
		    	interval: 7000, 
		    	autoplay: true
		    });
		}
	
		if($('.testis')) {
			$('.testis').tabs('div.testimonials > a', { 
		        effect: 'fade', 
		        rotate: true 
		    }).slideshow({
		    	interval: 7000, 
		    	autoplay: true,
		    	next: '.next',
		    	prev: '.prev'
		    });
		}
		
		$('#state').change(function() {
			if( $(this).val() == 'international' ) {
				$('.line#country').show();
			} else {
				$('.line#country').hide();
			}
		});

	} catch(e) {}
});