/*****************************************
*	Function that changes the divs and menu-items under product-details
*****************************************/
var active = 'details';
$(document).ready(function(){
	$("#boxwithnav > span").hide();
	$("#" + active).show();

	$("#prod-nav > ul > li > span > a").click(function() {
		active = this.name;
		//alert(active);

		$("#prod-nav > ul > li").removeClass("act");
		$("#prod-nav > ul > li[name="+active+"]").addClass("act");

		$("#boxwithnav > span").hide();
		$("#" + active).show();
	});
});

var uservoiceOptions = {
  /* required */
  key: 'mileagereport',
  host: 'mileagereport.uservoice.com', 
  forum: '40026',
  showTab: true,  
  /* optional */
  alignment: 'right',
  background_color:'#FF6600', 
  text_color: 'white',
  hover_color: '#F59300',
  lang: 'en'
};
function _loadUserVoice() {
  var s = document.createElement('script');
  s.setAttribute('type', 'text/javascript');
  s.setAttribute('src', ("https:" == document.location.protocol ? "https://" : "http://") + "cdn.uservoice.com/javascripts/widgets/tab.js");
  document.getElementsByTagName('head')[0].appendChild(s);
}
/*_loadSuper = window.onload;
window.onload = (typeof window.onload != 'function') ? _loadUserVoice : function() { _loadSuper(); _loadUserVoice(); };
*/
