// JavaScript Document
  jQuery.noConflict();

jQuery(document).ready(function(){
    if (!jQuery('#vBox div')) return;
jQuery('#vBox div').hide(); // Hide all divs
jQuery('#vBox div:first').show(); // Show the first div
jQuery('#vBox ul li:first').addClass('active'); // Set the class of the first link to active
jQuery('#vBox ul li a').click(function(){ //When any link is clicked
jQuery('#vBox ul li').removeClass('active'); // Remove active class from all links
jQuery(this).parent().addClass('active'); //Set clicked link class to active
var currentTab = jQuery(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
jQuery('#vBox div').hide(); // Hide all divs
jQuery(currentTab).show(); // Show div with id equal to variable currentTab
return false;
});
});



jQuery(document).ready(function(){
    if (!jQuery('#vbox div')) return;
jQuery('#vbox div').hide(); // Hide all divs
jQuery('#vbox div:first').show(); // Show the first div
jQuery('#vbox ul li:first').addClass('active'); // Set the class of the first link to active
jQuery('#vbox ul li a').click(function(){ //When any link is clicked
jQuery('#vbox ul li').removeClass('active'); // Remove active class from all links
jQuery(this).parent().addClass('active'); //Set clicked link class to active
var currentTab = jQuery(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
jQuery('#vbox div').hide(); // Hide all divs
jQuery(currentTab).show(); // Show div with id equal to variable currentTab
return false;
});
});


jQuery(document).ready(function(){
    if (!jQuery('#tabs_boxM_1 div')) return;
jQuery('#tabs_boxM_1 div').hide(); // Hide all divs
jQuery('#tabs_boxM_1 div:first').show(); // Show the first div
jQuery('#tabs_boxM_1 ul li:first').addClass('active'); // Set the class of the first link to active
jQuery('#tabs_boxM_1 ul li a').click(function(){ //When any link is clicked
jQuery('#tabs_boxM_1 ul li').removeClass('active'); // Remove active class from all links
jQuery(this).parent().addClass('active'); //Set clicked link class to active
var currentTab = jQuery(this).attr('href'); // Set variable currentTab to value of href attribute of clicked link
jQuery('#tabs_boxM_1 div').hide(); // Hide all divs
jQuery(currentTab).show(); // Show div with id equal to variable currentTab
return false;
});
});