$(document).ready(function() {
	var isIE = $.browser.msie;
	
	// Rounded Corners
	if(!isIE) {
		$('#Main').corners("20px");
	}
	
	// Focus Area Slider
	$('#Focus-Container').RynoSlide({
		direction: 'horizontal',
		nextControl: '#Focus-Next',
		prevControl: '#Focus-Prev',
		speed: 800,
		easing: 'jswing'
	});
	
	// Testimonials Slider
	$('#Test-Container').RynoSlide({
		direction: 'vertical',
		nextControl: '#Test-Next',
		prevControl: '#Test-Prev',
		speed: 800,
		easing: 'jswing'
	});
});