[jQuery] second time jquery is included, kills previously called plugins

[jQuery] second time jquery is included, kills previously called plugins


if you have this in this order, the plugin call won't work. it will
give an error that the plugin function is not defined
<script type="text/javascript" src="/scripts/jquery.pack.js"></script>
<script type="text/javascript" src="/scripts/jquery.corner.js"></
script>
$(function(){
$('#bodyframe').corner('tr');
});
<script type="text/javascript" src="/scripts/jquery.pack.js"></script>
Since this is a portal, I may not know if the jquery was already
included and I can't stop it being included in another portlet.