//open jquery
$(function() {
    
  // TRACKING HELPERS
  // external links
  $("a[href^='http://'][href!='http://www.gene.com/gene/products/information/pdf/tarceva-prescribing.pdf'],a[href^='https://'],a:not([href^='http://kadium.vo.llnwd.net/o16/'])").click(function(){
  var outgoingLink = $(this).attr('href');
  var omniLinkName = outgoingLink.substring(0,99);
  
   // Omniture
   // doLinkEvent(omniLinkName,'eVar1='+ pageLocation +'|ext-link|'+ omniLinkName +';event3=true');

  });
  
  // downloads
  // track links to doc, eps, svg, xls, ppt, pdf, xls, zip, vsd, vxd, rar, exe, wma, mov, avi, wmv, mp3, mp4, m4v
 $("a[href$='.doc'],a[href$='.eps'],a[href$='.svg'],a[href$='.xls'],a[href$='.ppt'],a[href$='.pdf'],a[href$='.xls'],a[href$='.zip'],a[href$='.vsd'],a[href$='.vxd'],a[href$='.rar'],a[href$='.exe'],a[href$='.wma'],a[href$='.mov'],a[href$='.avi'],a[href$='.wmv'],a[href$='.mp3'],a[href$='.mp4'],a[href$='.m4v']").click(function(){

	var downloadLink = $(this).attr('href');
	var downloadFilename = downloadLink.substring(downloadLink.lastIndexOf("/")+1);
	
	// Omniture
	// doLinkEvent('download:' + downloadFilename,'eVar15='+ pageLocation +'|'+ downloadFilename +';event7=true');	
  });
  
  if($('.tabs').length > 0) {
	  /* Controls tab switching */
	  $('.tabControl li a').click(function(e) {
		var targetArea = $(this).attr('href');
		$(this).closest('li').siblings().find('a').removeClass('current');
		$(this).addClass('current'); 
		
		$(targetArea).siblings().removeClass('current');
		$(targetArea).addClass('current');
			
		e.preventDefault();
	  });
  }
});
