InStyle quickstart is using VM 3.0.6. Our demo is using the same version. The only difference is that demo for this template is using joomla 2.5. Please send me an access to ftp and url to site, so I'll try fix the validation error.
/* VirtueMart addons */
jQuery(document).ready(function() {
var tabs = jQuery('#product-tabs');
// if tabs exists
if(tabs.length) {
// initialization
tabs.find('li').first().addClass('active');
var contents = jQuery('#product-tabs-content');
contents.children('div').css('display', 'none');
contents.first('div').addClass('active');
// add events to the tabs
tabs.find('li').each(function(i, tab) {
tab = jQuery(tab);
tab.click(function() {
var toggle = tab.attr('data-toggle');
contents.children('div').removeClass('active');
contents.find('.' + toggle).addClass('active');
tabs.find('li').removeClass('active');
tab.addClass('active');
});
});
}
});