$(function() {
  /* init prod nav */
	if (typeof $("div.prod-nav-tab") !== "undefined" ) {
	  $("div.prod-nav-tab").hover(
		function() {
		  if (!( (/-sel$/).test(this.id)) ) {
			$(this).setBackgroundPosition("0 -75px");
		  }
		},
		function() {
		  if (!( (/-sel$/).test(this.id)) ) {
			$(this).setBackgroundPosition("0 -150px");
		  }
		 });
	}
	/* init tabs */
	if ( typeof $("#tabs") !== "undefined" ) {
	  $("#tabs").tabs({
		event: 'mouseover'
	  });
	}
});
