// JavaScript Document
jQuery(function($) {

  autoLayout();

  // modified figurehandler to be a function called autoLayout()
  // need to trigger and bind to event cuz layout can't happen when hidden
  $('#prodSub').bind('tabsshow', function(event, ui) {
    if (ui.panel.id == "prodSubDescription") {
        autoLayout();
    }
  });
  
  $("a[rel='external']").live("click", function(event){
    $(this).attr("target", "_blank");
  });
  
	try {
		
    $('ul.callOut li.portfolio_voip_en, ul.callOut li.tech_dect6_en, ul.callOut li.tech_audioiq_en, ul.callOut li.tech_bluetooth_en, ul.callOut li.portfolio_uc_en').cluetip({cluetipClass: 'jtip',width: '480px', dropShadow: true, positionBy: 'bottomTop', showTitle: false, topOffset: 10});

	$(".prodNewsList a").faviconize({
		position: "before",
		defaultImage: "/images/press/bg_default_favicon.gif",
		className: "imgFavicon",
		linkable: false
	});



	} catch(e) {}


});