
/* Scripts that has to run onload */

	// rounds corners plugin	
    var myBorder = RUZEE.ShadedBorder.create({ corner:8, shadow:16 });
    
    var roundBorder = RUZEE.ShadedBorder.create({ corner:8, shadow:16 });

window.onload = function(){
	

    
    if ($('box'))
    	myBorder.render('box');	    
    
    $$('.rounded').each(function(item, index){ roundBorder.render(item); });
}
