$(document).ready(function() {
           
            roundedCorners();
            roundedCorners5();
        });
		
function roundedCorners() {
		$('.rc').rcorner({
            bgImageLocation: '/static/image/rcorners.gif',
            bgImageWidth: '8px',
            bgImageHeight: '8px'
        });
    }
function roundedCorners5() {
        $('.rc5').rcorner({
            bgImageLocation: '/static/image/rcorners.gif',
            bgImageWidth: '5px',
            bgImageHeight: '5px'
        });
    }
