$(document).ready(function() {
	$('.slideshow img').css({ width: '300px' });
    $('.slideshow div').css({ width: '300px' });
	$('.slideshow').css({ width: '300px', overflow: 'hidden', display: 'block' });
	$('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 5000,
		fit: 1,
		containerResize: 1
	});	
		
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
		
		if (ieversion >= 8) {
			$('.menu-dropdown li').corner('5px');
			$('.menu-dropdown li').hover(function() {
				$(this).uncorner();
				$(this).corner('5px top');
			});
		}
		/*
		$('#banner-inner').corner();
		$('#content-wrapper').corner();	
		$('.sidebar').corner();
		*/
	}

});

