jquery versions at once

jquery versions at once

i need to load 2 jquery versions at once because they only work with their jquery but its not working...
 

<

head runat="server">

<title></title>

<!-- load jQuery 1.5.2 -->

<script src="plugins/Bestgfx.com_EstroSlider/js/jquery-1.5.2.min.js"></script>

<

script type="text/javascript">

var jQuery_1_5_2 = $.noConflict(true);

</

script>

<!-- load jQuery 1.8.2 -->

<script src="plugins/Responsive_Tile_Gallery-1.3/rtg-demo/javascript/jquery-1.8.2.min.js"></script>

<

script type="text/javascript">

var jQuery_1_8_2 = $.noConflict(true);

</

script>

<%

--Then, instead of $('#selector').function();, you'd do jQuery_1_5_2('#selector').function(); or jQuery_1_8_2('#selector').function();.--%>

<!--Estro slider-->

<!-- main stylesheets -->

<link href="plugins/Bestgfx.com_EstroSlider/css/reset.css" rel="stylesheet" />

<link href="plugins/Bestgfx.com_EstroSlider/css/text.css" rel="stylesheet" />

<link href="plugins/Bestgfx.com_EstroSlider/css/960.css" rel="stylesheet" />

<link href="plugins/Bestgfx.com_EstroSlider/css/preview.css" rel="stylesheet" />

<link href="plugins/Bestgfx.com_EstroSlider/js/pe.kenburns/themes/default/skin.min.css" rel="stylesheet" />

<script src="plugins/Bestgfx.com_EstroSlider/js/preview.js"></script>

<script src="plugins/Bestgfx.com_EstroSlider/js/pe.kenburns/jquery.pixelentity.kenburnsSlider.min.js"></script>

<!--specify size of slider-->

<style>

.peKenBurns {

width: 920px;

height: 400px;

}

</style>

<script>

jQuery_1_5_2(

function ($) {

jQuery_1_5_2(

".peKenBurns").peKenburnsSlider({ externalFont: true })

})

// for google fonts, handle captions sizing only after fonts are loaded

jQuery_1_5_2(window).load(

function () {

jQuery_1_5_2(

".peKenBurns").each(function () {

jQuery_1_5_2(

this).data("peKenburnsSlider").fontsLoaded()

})

})

</script>

<!-- end estro slider -->

<!-- start rtg 1.3-->

<link href="plugins/Responsive_Tile_Gallery-1.3/rtg-demo/css/style.css" rel="stylesheet" />

<link href="plugins/Responsive_Tile_Gallery-1.3/rtg-demo/css/lightbox.css" rel="stylesheet" />

<link href="plugins/Responsive_Tile_Gallery-1.3/rtg-demo/css/rtg.css" rel="stylesheet" />

<script src="plugins/Responsive_Tile_Gallery-1.3/rtg-demo/javascript/rtg.js"></script>

<script src="plugins/Responsive_Tile_Gallery-1.3/rtg-demo/javascript/lightbox.min.js"></script>

<!--Initialize the gallery-->

<script>

jQuery_1_8_2(document).ready(

function () {

jQuery_1_8_2(

'#myGallery').rtg({

imageWidth: 250,

spacing: 10,

categories:

true,

categoryOptions: {

defaultCategory:

'First',

includeAll:

false

},

captionOptions: {

enableCaptions:

true

},

lightbox:

true,

center:

true,

initialHeight: 500

});

});

</script>

<!-- end rtg 1.3-->

</

head>