// /**//  * (c) Copyright 2008 Oakley, Inc.//  *//  */// var jq = jQueryjq(document).ready(	function() {	 	jq("li.popup-bubble").bubbletron({popupCss: {top: -128, left: -8, display: 'block'}});        // Embedded videos    jq('a.media').media();        // Show or hide the video section    jq("#video_tab > a").click(function() {      video_container = jq("#reinvent_tertiary");      if (video_container.height() == 1) {        video_container.animate({"height": "398px"}, "slow");		jq("#video_tab a span").removeClass("show");      } else {        video_container.animate({"height": "1px"}, "slow");		jq("#video_tab a span").addClass("show");      };            return false;    });        // Prevents the promo tabs from redirecting to a new page    jq("#promo-tabs").click(function() {      return false;    });    // Primary promotion scroller    jq("div#main-promos").scrollable({      items: 'div.main-promo-photos',      size: 1,      interval: 10000,      loop: true,      navi: "#promo-tabs",      activeClass: "selected"    });        jq("div.promo_selector").scrollable({      items: "div.promo_images",      size: 1,       interval: 7500,      loop: true,       prev:'.prev',      next:'.next'    });	// News Feed Hover	jq(".news_list li").hover(function(){		jq(this).find("a strong").css("color", "#000");	},	function(){		jq(this).find("a strong").css("color", "#505050");	})		  });