$(document).ready(function()
{
    msie = false;

	jQuery.each(jQuery.browser, function(i, val) {
        if (i == 'msie' && val == true) {
            msie = true;
	    }
    });

	if (!msie)
	{
		$('.message').corner('round');
		$('input[type=submit]').corner('round');
	}

	$('.slideshow').cycle({
        fx: 'fade',
        speed: '1000',
        timeout: 4000
    });

    $('.slideshow').show();
});
