﻿var QLmasterpageJS={
	QLdefaultLanguageExpiration:1825,
	QLvendor:false, //set this value to true when it's ready to send to vendor
	QLCurrentURL:(window.location.href).toLowerCase(),
	QLhpc:(window.location.href).toLowerCase().indexOf('/hpc/')!=-1,
	QLogic:((window.location.href).toLowerCase().indexOf('http://www.qlogic.com')!=-1) || ((window.location.href).toLowerCase().indexOf('http://qlogic.com')!=-1),
	QLlanguageMenu:[{
		English:'<a id="QLlanguageEnglish" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://www.qlogic.com">English</a>',
		German:'<a id="QLlanguageGerman" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://de.qlogic.com">Deutsch</a>',
		French:'<a id="QLlanguageFrench" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://fr.qlogic.com">Français</a>',
		Japanese:'<a id="QLlanguageJapanese" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://jp.qlogic.com">日本語</a>',
		Chinese:'<a id="QLlanguageChinese" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://cn.qlogic.com">中文</a>',
		Korean:'<a id="QLlanguageKorean" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://ko.qlogic.com">한국어</a>',
		Russian:'<a id="QLlanguageRussian" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://ru.qlogic.com">Русский</a>'}],
	QLlanguageMenuHPC:[{
		English:'<a id="QLlanguageEnglish" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://www.qlogic.com/hpc">English</a>',
		German:'<a id="QLlanguageGerman" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://de.qlogic.com/hpc">Deutsch</a>',
		French:'<a id="QLlanguageFrench" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://fr.qlogic.com/hpc">Français</a>',
		Japanese:'<a id="QLlanguageJapanese" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://jp.qlogic.com/hpc">日本語</a>',
		Chinese:'<a id="QLlanguageChinese" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://cn.qlogic.com/hpc">中文</a>',
		Korean:'<a id="QLlanguageKorean" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://ko.qlogic.com/hpc">한국어</a>',
		Russian:'<a id="QLlanguageRussian" class="QLBodyTextLinkNormal QLlanguageMenu" href="http://ru.qlogic.com/hpc">Русский</a>'}],
	QLshowInternationalPanel: function(){
		if($("#QLinternationalMenuPanel").length>0) {
        	$("#QLinternationalMenuPanel").html(
        		"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">"+
        			"<tr>"+
        				"<td nowrap style=\"width:500px;height:30px;\" valign=\"bottom\" align=\"right\">"+
        					"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">"+
        						"<tr>"+
        							"<td align=\"right\" valign=\"bottom\" id=\"QLlanguageMenu1PlaceHolder\" style=\"display:none;\">&nbsp;</td>"+
        						"</tr>"+
        					"</table>"+
        				"</td>"+
                		"<td valign=\"top\">"+
                			"<a href=\"#\" id=\"internationalMenuActionsID\"><img id=\"internationalMenuActionsImage\" src=\"http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/navi_international.jpg\" border=\"0\"/></a>"+
                		"</td>"+
                		"<td valign=\"top\"><a id=\"QLaboutQLogic\" href=\"http://www.qlogic.com/CompanyInfo/Pages/AboutQLogic.aspx\">"+
                			"<img width=\"97\" height=\"26\" src=\"http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/navi_contact_us.jpg\" border=\"0\"/></a>"+
                		"</td>"+
                	"</tr>"+
				"</table>");
		}
	},
	QLnewWindow: function(url,width,height) {
        var left   = (screen.width  - width)/2;
        var top    = (screen.height - height)/2;
        var params = 'width='+width+', height='+height;
        params += ', top='+top+', left='+left;
        params += ', directories=no';
        params += ', location=no';
        params += ', menubar=no';
        params += ', resizable=no';
        params += ', scrollbars=no';
        params += ', status=no';
        params += ', toolbar=no';
        newwin=window.open(url,'windowName', params);
        if (window.focus) {newwin.focus()}
        return false;
	},
	QLshowSearchBox: function (){
		if($("#QLsearchPlaceholder").length>0) {
        	$("#QLsearchPlaceholder").html(
        		"<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">"+
        			"<tr>"+
        				"<td class=\"QLSearchoxTD\">"+
        					"<input onfocus=\"this.value='';\" name=\"QLSearchboxInputName\" type=\"text\" value=\"Search\" maxlength=\"200\" id=\"QLSearchboxInputID\" title=\"Enter search words\">"+
        				"</td>"+
        				"<td class=\"QLSearchoxTD\">"+
        					"<a id=\"QLsearchBoxButton\" title=\"Go Search\" href=\"javascript:window.location.href='http://www.qlogic.com/Search/Pages/Search.aspx?k=' + $('#QLSearchboxInputID').val();\">"+
        					"<img height=\"18\" width=\"20\" border=\"0\" title=\"Go Search\" alt=\"Go Search\" src=\"http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/btn_search.jpg\"/></a>"+
        				"</td>"+
        	        	"</tr>"+
                "</table>");
                $('#QLsearchBoxButton').click(function(){ //only search hpc site
                	var searchString='http://www.qlogic.com/Search/Pages/Search.aspx?k=' + $('#QLSearchboxInputID').val();
                	if(QLmasterpageJS.QLhpc) {
                		searchString='http://www.qlogic.com/hpc/Pages/Search.aspx?k='+ $('#QLSearchboxInputID').val()+'&cs=This%20Site&u=http://www.qlogic.com/hpc';
                		$(this).attr('href',searchString);
                	}
                });
        }
    },
    QLshowTopNav: function() {
    	if($("#QLtopnavPlaceHolder").length>0) {
    		if(this.QLhpc) {
    			//click on logo returns to hpc homepage
    			$('#_dotcomLandingPage_').click(function(){ $(this).attr('href','http://' + document.location.hostname + '/hpc');});
    			if(this.QLCurrentURL.indexOf('/hpc/pages') !=-1) //only show on the homepage
    				$("#QLbottomRowPlaceholder").html('<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/IB_HPC.jpg" width="180" height="17"/>');
    			$("#QLtopnavPlaceHolder").html(
        			'<table border="0" cellpadding="0" cellspacing="0" id="QLtopnavTable">'+
                		'<tr>'+
    						'<td align="left">'+ //Products
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDProducts">'+
            					'<a href="http://www.qlogic.com/hpc/products/Pages/overview.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_IB_products.jpg" width="189" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;z-index:100;">'+
            					'<table  border="0" align="left" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td style="width:18px;" class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
                                    	'<IMG height=9px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
                                    		'<table border="0" cellpadding="0" cellspacing="0">'+
                                    			'<tr>'+
        											'<td rowspan="2"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center">&nbsp;</td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="130" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center">&nbsp;</td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td valign="top" nowrap="nowrap">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+	
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">By Product</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/products/Pages/overview.aspx?tab=tab1#QLtab1">Host Adapters</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/products/Pages/overview.aspx?tab=tab2#QLtab2">Edge and Director Switches</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/products/Pages/overview.aspx?tab=tab3#QLtab3">InfiniBand Fabric Suite</a></td>'+					
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/products/Pages/overview.aspx?tab=tab4#QLtab4">OpenFabrics Software</a></td>'+					
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/products/Pages/cables.aspx">Cables and Connectors</a></td>'+					
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/products/Pages/support.aspx">Global Support</a></td>'+					
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+			
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">By Technology</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/products/Pages/GPUAccelHPC.aspx">GPU-Accelerated HPC</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/products/Pages/hpcStorage.aspx">HPC Storage</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/products/Pages/embeddedIB.aspx">Embedded InfiniBand</a></td>'+	
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/products/Pages/top500.aspx">Top500</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="7" align="center" height="20"><img align="absmiddle" height="1" width="350" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        										'</tr>'+
        									'</table>'+						
        								'</td>'+
                                    	'<td style="width:18px;" class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+                          	
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td align="left">'+ //Solutions
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDSolutions">'+
            					'<a href="http://www.qlogic.com/hpc/solutions/Pages/overview.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_IB_Solutions.jpg" width="193" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;z-index:100;">'+
            					'<table  border="0" align="left" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td style="width:18px;" class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
                                    	'<IMG height=9px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
                                    		'<table border="0" cellpadding="0" cellspacing="0">'+
                                    			'<tr>'+
        											'<td rowspan="2"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center">&nbsp;</td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="130" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center">&nbsp;</td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td valign="top" nowrap="nowrap">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+	
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">By HPC Market</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/overview.aspx">Overview</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/accademic.aspx">Academic HPC</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/govResearch.aspx">Government Research</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/manufacturing.aspx">Manufacturing</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/lifeScience.aspx">Life Sciences</a></td>'+	
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/OilandGas.aspx">Oil and Gas</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/weatherclimate.aspx">Weather and Climate Modeling</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">By HPC Technology</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/nvidia.aspx">nVIDIA GPU</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap" style="padding-top:25px;"><span class="ms-rteCustom-Arial_Bold_13_003464">Customer Success Stories</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/solutions/Pages/customerComments.aspx">Customer Comments</a></td>'+					
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="7" align="center" height="20"><img align="absmiddle" height="1" width="350" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        										'</tr>'+
        									'</table>'+						
        								'</td>'+
                                    	'<td style="width:18px;" class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+                          	
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td>'+ //Partners
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDPartners">'+
            					'<a href="http://www.qlogic.com/hpc/partners/Pages/industryAlliance.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_IB_Partners.jpg" width="185" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;width:10px;z-index:100;">'+
            					'<table border="0" align="center" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td nowrap="nowrap" bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
        									'<p style="padding-top:10px;">&nbsp;</p>'+
        									'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/partners/Pages/industryAlliance.aspx">&nbsp;&nbsp;&nbsp;Industry Alliance</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/partners/Pages/techIntegration.aspx">&nbsp;&nbsp;&nbsp;Technology and Integration</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/partners/Pages/global.aspx">&nbsp;&nbsp;&nbsp;Global</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/partners/Pages/application.aspx">&nbsp;&nbsp;&nbsp;Application</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/partners/Pages/certifications.aspx">&nbsp;&nbsp;&nbsp;Certifications</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									//'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/partners/Pages/trackAlliance.aspx">&nbsp;&nbsp;&nbsp;HPCTrack Alliance</a>'+	
                                    	'</td>'+
                                    	'<td class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td>'+ //Learn More
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDLearnMore">'+
            					'<a href="http://www.qlogic.com/hpc/learnmore/Pages/pressReleases.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_IB_LearnMore.jpg" width="203" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;width:10px;z-index:100;">'+
            					'<table  border="0" align="left" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td style="width:18px;" class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
                                    	'<IMG height=9px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
                                    		'<table border="0" cellpadding="0" cellspacing="0">'+
                                    			'<tr>'+
        											'<td rowspan="2"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center">&nbsp;</td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="130" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center">&nbsp;</td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td valign="top" nowrap="nowrap">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+	
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/pressReleases.aspx">&nbsp;&nbsp;&nbsp;Press Releases</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/customerWins.aspx">&nbsp;&nbsp;&nbsp;Recent Customer Wins</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/TSnews.aspx">&nbsp;&nbsp;&nbsp;TrueScale in the News</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/whatmakesbetter.aspx">&nbsp;&nbsp;&nbsp;What Makes TrueScale Better?</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/resources.aspx">&nbsp;&nbsp;&nbsp;Resources</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+			
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/hpcevents.aspx">&nbsp;&nbsp;&nbsp;HPC Events</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/ib_webcasts.aspx">&nbsp;&nbsp;&nbsp;TrueScale IB Hot Topics Webcasts</a></td>'+					
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="/hpc/learnmore/Pages/interopGuide.aspx">&nbsp;&nbsp;&nbsp;HPC Interoperability Guide</a></td>'+					
        													'</tr>'+
															'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/learnmore/Pages/NDCenter.aspx">&nbsp;&nbsp;&nbsp;NetTrack Developer Center</td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/hpc/learnmore/Pages/TSnewsletter.aspx">&nbsp;&nbsp;&nbsp;TrueScale Newsletter</td>'+					
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="7" align="center" height="20"><img align="absmiddle" height="1" width="350" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        										'</tr>'+
        									'</table>'+						
        								'</td>'+
                                    	'<td style="width:18px;" class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+                          	
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td>'+ //Downloads
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDDownloads">'+
								'<a target="_blank" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/DefaultNewSearch.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_IB_downloads.jpg" width="210" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;width:510px;z-index:100;">'+
            					'<table border="0" align="center" cellpadding="0" cellspacing="0" style="width:510px;">'+
                                  	'<tr>'+
                                  		'<td class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top" align="center" style="width:510px;padding-left:10px;">'+
        									'<p style="padding-top:10px;">&nbsp;</p>'+
        									'<table border="0" cellpadding="0" cellspacing="0" width="100%">'+
												'<tr>'+
                                                	'<td nowrap="nowrap" align="left" colspan="3">'+                                                                           
                                                    	'<a target="_blank" style="text-decoration:none" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/DefaultNewSearch.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">QLogic Products</span></a><br><a style="text-decoration:none;" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/NewSearchResult.aspx?resourceid=MgA3ADYAMwA3AA=="><span style="font-family:Arial;font-size:10px;color:red;font-weight:bold;">Critical Fixes for 3200/8200 Series Adapters</span></a>'+
                                                    '</td>'+
                                                '</tr>'+
                                                '<tr>'+
                                                	'<td colspan="3">'+
                                                	
                                                	'</td>'+
                                                '</tr>'+
        										'<tr><td colspan="3"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif" height="15"></td></tr>'+
        										'<tr>'+
        											'<td colspan="3" align="left">'+
        												'<img align="absmiddle" height="1" width="340" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        											'</td>'+
        										'</tr>'+
        										'<tr><td colspan="3"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif" height="15"></td></tr>'+
        										'<tr>'+
        											'<td colspan="3" align="left">'+
        												'<a style="text-decoration:none" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/NewDefault.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">OEM Products</span></a><br>'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Apple.aspx">Apple</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Product_detail.aspx?oemid=392">Cisco</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Dell.aspx?companyid=13">Dell</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List_New.aspx?oemid=65">EMC</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Product_detail_new.aspx?oemid=400&companyid=13">EqualLogic</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List.aspx?oemid=398">Fujitsu</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/HitachiDataSystems.aspx?companyid=5">Hitachi Data Systems</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/HP.aspx?companyid=4">HP</a>&nbsp;&nbsp;'+
        												'<br>'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/IBM.aspx?companyid=6">IBM</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Product_detail.aspx?oemid=264">Intel</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List.aspx?oemid=164">LSI</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List.aspx?oemid=372">NetApp</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/SunOEM.aspx?oemid=124">Oracle</a>'+
        											'</td>'+
        										'</tr>'+
        									'</table>'+	
                                    	'</td>'+
                                    	'<td class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            		'</table>');
    		}
    		else {
        		$("#QLtopnavPlaceHolder").html(
        		'<table border="0" cellpadding="0" cellspacing="0" id="QLtopnavTable">'+
            		'<tr>'+
            			'<td align="left">'+ //Products
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDProducts">'+
            					'<a href="http://www.qlogic.com/Products/adapters/Pages/FibreChannelAdapters.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_products.jpg" width="151" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;z-index:10000;">'+
            					'<table  border="0" align="left" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td style="width:18px;" class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
                                    	'<IMG height=9px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
                                    	'<table border="0" cellpadding="0" cellspacing="0">'+
        										'<tr>'+
        											'<td rowspan="2"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center"><IMG border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/popup_adapter_image.jpg"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="200" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center"><IMG border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/popup_switch_image.jpg"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="200" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center"><IMG border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/popup_router_image.jpg"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="200" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="center"><IMG border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/popup_asic_image.jpg"></td>'+
        											'<td rowspan="2" align="center"><IMG width=0px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td valign="top" nowrap="nowrap">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+	
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">Adapters</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/adapters/Pages/FibreChannelAdapters.aspx">Fibre Channel Adapters</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/adapters/Pages/IntelligentEthernetAdapters.aspx">Intelligent Ethernet Adapters</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/adapters/Pages/iSCSIAdapters.aspx">iSCSI Adapters</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/adapters/Pages/InfiniBandAdapters.aspx">InfiniBand Adapters</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/adapters/Pages/ConvergedNetworkAdapters.aspx">Converged Network Adapters</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+			
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">Switches</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/Switches/Pages/FibreChannelSwitches.aspx">Fibre Channel Switches</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/Switches/Pages/InfiniBandSwitches.aspx">InfiniBand Switches</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/Switches/Pages/ConvergedSwitches.aspx">Converged Network Switches</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+	
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">Routers</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/Routers/Pages/IntelligentStorageRouters.aspx">Intelligent Storage Routers</a></td>'+					
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top">'+
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+				
        													'<tr>'+
        														'<td nowrap="nowrap"><span class="ms-rteCustom-Arial_Bold_13_003464">ASICs</span></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/Controllers/Pages/FibreChannelControllers.aspx">Fibre Channel Controllers</a></td>'+
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Products/Controllers/Pages/ConvergedNetworkControllers.aspx">Converged Network Controllers</a></td>'+
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="15" align="center" height="20"><img align="absmiddle" height="1" width="750" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="15" nowrap><IMG alignt=right width=10px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
        												'<span class="ms-rteCustom-Arial_Bold_13_003464">OEM-Branded Products:</span>&nbsp;&nbsp;'+
        												//'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Pages/CiscoOEMPartnership.aspx">Cisco</a>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Cisco">Cisco</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Dell">Dell</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/EMC">EMC</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Hitachi">Hitachi</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/hp">HP</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Pages/HuaweiSymantecOEMPartnership.aspx">Huawei Symantec</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+	
        												//'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Pages/IBMOEMPartnership.aspx">IBM</a>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/IBM">IBM</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/NetApp">NetApp</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/OEMPartnerships/Oracle">Oracle</a>&nbsp;&nbsp;'+
        												'<IMG width=50px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"><img align=absmiddle width="1" height="30" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"><IMG width=15px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
        												'<a style="text-decoration:none" href="http://www.qlogic.com/Interoperability/Pages/default.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">Interoperability</span></a>'+
        											'</td>'+
        										'</tr>'+
        									'</table>'+						
        								'</td>'+
                                    	'<td style="width:18px;" class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+                          	
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td>'+ //Ordering
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDOrdering">'+
            					'<a href="http://www.qlogic.com/WhereToBuy/Pages/WhereToBuy.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_ordering.jpg" width="160" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;width:10px;z-index:100;">'+
            					'<table border="0" align="center" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td nowrap="nowrap" bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
        									'<p style="padding-top:10px;">&nbsp;</p>'+
        									'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/WhereToBuy/Pages/WhereToBuy.aspx?for=endusers">&nbsp;&nbsp;&nbsp;Find a Reseller</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/WhereToBuy/Pages/WhereToBuy.aspx?for=resellers">&nbsp;&nbsp;&nbsp;Find a Distributor</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/WhereToBuy/Pages/WhereToBuy.aspx?for=oems">&nbsp;&nbsp;&nbsp;OEM Contacts</a>'+
        									'<br><img align="absmiddle" height="1" width="135" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        									'<br><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/WhereToBuy/Pages/ContactQLogicSales.aspx">&nbsp;&nbsp;&nbsp;Contact QLogic Sales</a>'+	
                                    	'</td>'+
                                    	'<td class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td>'+ //Support
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDSupport">'+
            					'<a href="http://qlogic.custhelp.com/app/home"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_support.jpg" width="155" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;z-index:100;">'+
            					'<table border="0" align="center" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
        								'<p style="padding-top:10px;">&nbsp;</p>'+
        									'<table border="0" cellpadding="0" cellspacing="0">'+
        										'<tr>'+
        											'<td><IMG width=10px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td valign="top" nowrap="nowrap">'+//left column
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+														
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://qlogic.custhelp.com/app/home">Support Center</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://qlogic.custhelp.com/app/account/overview">My Support</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://qlogic-community.custhelp.com">Forums</a></td>'+	
        													'</tr>'+
        													//'<tr>'+
        													//	'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://solutions.qlogic.com/KanisaSupportSite/product/products.do?id=m4">Product Families</a></td>'+	
        													//'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://admin.viewcentral.com/events/uploads/qlogic/landing_page.html" target="_blank">Training and Certification</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td><img width="1" height="105" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td valign="top" nowrap="nowrap">'+//right column
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://lk.qlogic.com">License Key Activation Center</a></td>'+	
        													'</tr>'+												
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://registration.qlogic.com">Service/Warranty Registration</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Support/Pages/ServicePrograms.aspx">Service Programs</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Support/Pages/Warranty.aspx">Warranty</a></td>'+	
        													'</tr>'+													
        													'<tr>'+
        														'<td nowrap="nowrap"><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Support/Pages/GenuineQLogic.aspx">Genuine QLogic</a></td>'+	
        													'</tr>'+													
        												'</table>'+
        											'</td>'+
        											'<td><IMG width=10px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+										
        										'</tr>'+										
        									'</table>'+	
                                    	'</td>'+
                                    	'<td class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
        				'<td>'+ //Resources
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDResources">'+
            					'<a href="http://www.qlogic.com/Resources/"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_resources.jpg" width="170" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;z-index:10000;">'+
            					'<table border="0" align="left" cellpadding="0" cellspacing="0">'+
                                  	'<tr>'+
                                  		'<td style="width:18px;" class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top">'+
                                    	'<p style="padding-top:10px;">&nbsp;</p>'+
                                    		'<table border="0" cellpadding="0" cellspacing="0">'+
        										'<tr>'+
        											'<td rowspan="2"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="left"><span class="ms-rteCustom-Arial_Bold_13_003464">Adapters</span></td>'+
        											'<td rowspan="2"><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="160" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="left"><span class="ms-rteCustom-Arial_Bold_13_003464">Switches</span></td>'+
        											'<td rowspan="2"><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="160" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="left"><span class="ms-rteCustom-Arial_Bold_13_003464">Routers</span></td>'+
        											'<td rowspan="2"><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td rowspan="2"><img width="1" height="160" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        											'<td rowspan="2"><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        											'<td align="left"><span class="ms-rteCustom-Arial_Bold_13_003464">ASICs</span></td>'+
        											'<td rowspan="2" align="center"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td valign="top" nowrap="nowrap">'+//Adapters
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+														
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=datasheets">Data Sheets</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=whitepapers">White Papers</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=casestudies">Case Studies</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=technologybriefs">Technology Briefs</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=solutionsheets">Solution Sheets</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=competitivebriefs">Competitive Briefs</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=cablesupport">Cable Support</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=adapters&productLiterature=alliancebriefs">Alliance Briefs</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top" nowrap="nowrap">'+//Switches
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+														
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=switches&productLiterature=datasheets">Data Sheets</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=switches&productLiterature=whitepapers">White Papers</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=switches&productLiterature=casestudies">Case Studies</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=switches&productLiterature=technologybriefs">Technology Briefs</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=switches&productLiterature=cablesupport">Cable Support</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=switches&productLiterature=alliancebriefs">Alliance Briefs</a></td>'+	
        													'</tr>'+
        												
        												'</table>'+
        											'</td>'+
        											'<td valign="top" nowrap="nowrap">'+//Routers
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+														
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=routers&productLiterature=datasheets">Data Sheets</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=routers&productLiterature=whitepapers">White Papers</a></td>'+					
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=routers&productLiterature=casestudies">Case Studies</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=routers&productLiterature=technologybriefs">Technology Briefs</a></td>'+	
        													'</tr>'+													
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=routers&productLiterature=competitivebriefs">Competitive Briefs</a></td>'+	
        													'</tr>'+
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=routers&productLiterature=applicationnotes">Application Notes</a></td>'+	
        													'</tr>'+
        												'</table>'+
        											'</td>'+
        											'<td valign="top" nowrap="nowrap">'+//ASICs
        												'<table align="left" border="0" cellpadding="0" cellspacing="0">'+														
        													'<tr>'+
        														'<td><a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Pages/Resources.aspx?productFamily=ASICs&productLiterature=datasheets">Data Sheets</a></td>'+					
        													'</tr>'+													
        												'</table>'+
        											'</td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="15" align="center" height="20"><img align="absmiddle" height="1" width="525" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
        										'</tr>'+
        										'<tr>'+
        											'<td colspan="15">'+
        												'<IMG alignt=right width=10px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"><span class="ms-rteCustom-Arial_Bold_13_003464">Brochures:</span>&nbsp;&nbsp;'+
        												'<a target="blank" class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Documents/QLogic_Product_Guide.pdf">QLogic Product Guide</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a target="blank" class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Documents/Products_at_Glance.pdf">Products at a Glance</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a target="blank" class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Resources/Documents/CorporateBackgrounder.pdf">Corporate Backgrounder</a>&nbsp;&nbsp;'+
        												'<br><IMG alignt=left width=20px height=20px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif">'+
        												'<IMG alignt=right width=9px height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"><span class="ms-rteCustom-Arial_Bold_13_003464">Guides:</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://www.qlogic.com/Interoperability/Pages/default.aspx">Interoperability</a>&nbsp;&nbsp;'+
        											'</td>'+
        										'</tr>'+
        									'</table>'+						
        								'</td>'+
                                    	'<td style="width:18px;" class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+                          	
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
            			'<td>'+ //Downloads
            				'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDDownloads">'+
            					'<a href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/DefaultNewSearch.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_downloads.jpg" width="174" height="30" border="0"/></a></br>'+
            					'<div style="display:none;position:absolute;width:510px;z-index:100;">'+
            					'<table border="0" align="center" cellpadding="0" cellspacing="0" style="width:510px;">'+
                                  	'<tr>'+
                                  		'<td class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    	'<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" valign="top" align="center" style="width:510px;padding-left:10px;">'+
        									'<p style="padding-top:10px;">&nbsp;</p>'+
        									'<table border="0" cellpadding="0" cellspacing="0" width="100%">'+
												'<tr>'+
                                                	'<td nowrap="nowrap" align="left" colspan="3">'+                                                                           
                                                    	'<a style="text-decoration:none" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/DefaultNewSearch.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">QLogic Products</span></a><br><a style="text-decoration:none;" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/NewSearchResult.aspx?resourceid=MgA3ADYAMwA3AA=="><span style="font-family:Arial;font-size:10px;color:red;font-weight:bold;">Critical Fixes for 3200/8200 Series Adapters</span></a>'+
                                                    '</td>'+
                                                '</tr>'+
        										'<tr><td colspan="3"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif" height="15"></td></tr>'+
        										'<tr>'+
        											'<td colspan="3" align="left">'+
        												'<img align="absmiddle" height="1" width="340" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0">'+
        											'</td>'+
        										'</tr>'+
        										'<tr><td colspan="3"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif" height="15"></td></tr>'+
        										'<tr>'+
        											'<td colspan="3" align="left">'+
        												'<a style="text-decoration:none" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/NewDefault.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">OEM Products</span></a><br>'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Apple.aspx">Apple</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Product_detail.aspx?oemid=392">Cisco</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Dell.aspx?companyid=13">Dell</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List_New.aspx?oemid=65">EMC</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Product_detail_new.aspx?oemid=400&companyid=13">EqualLogic</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List.aspx?oemid=398">Fujitsu</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/HitachiDataSystems.aspx?companyid=5">Hitachi Data Systems</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/HP.aspx?companyid=4">HP</a>&nbsp;&nbsp;'+
        												'<br>'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/IBM.aspx?companyid=6">IBM</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/Product_detail.aspx?oemid=264">Intel</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List.aspx?oemid=164">LSI</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/OEM_Product_List.aspx?oemid=372">NetApp</a>&nbsp;&nbsp;'+
        												'<span class="ms-rteCustom-Arial_Bold_12_005FAD">|</span>&nbsp;&nbsp;'+
        												'<a class="ms-rteCustom-Link_Arial_11-5_005fAD" href="http://driverdownloads.qlogic.com/QLogicDriverDownloads_UI/SunOEM.aspx?oemid=124">Oracle</a>'+
        											'</td>'+
        										'</tr>'+
        									'</table>'+	
                                    	'</td>'+
                                    	'<td class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                  	'</tr>'+
                                  	'<tr>'+
                                    	'<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                    	'<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                  	'</tr>'+
                      			'</table>'+
                      			'</div>'+
            				'</div>'+
            			'</td>'+
                    	'<td>'+ //Partnerships
                        	'<div class="QLtopnavTabDiv" id="QLtopnavTabDivIDPartnerlogin">'+
                                '<a href="https://connect.qlogic.com/connectiondashboard_new/ui/login.aspx"><img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Navi_partnerlogin.jpg" width="170" height="30" border="0"/></a></br>'+
                                '<div style="display:none;position:absolute;width:480px;z-index:1000;">'+
                                '<table border="0" align="center" cellpadding="0" cellspacing="0">'+
                                    '<tr>'+
                                    	'<td class="QLtopnavPopupTopleft"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                        '<td bgcolor="#FFFFFF" class="QLtopnavPopupTopMiddleRepeatX" style="width:440px" valign="top">'+
                                            '<p style="padding-top:10px;">&nbsp;</p>'+                                                             
                                            '<table border="0" cellpadding="0" cellspacing="0">'+                        
                                            	'<tr>'+
                                                 	'<td><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                                 	'<td nowrap="nowrap" valign="top">'+
                                                    	'<iframe frameborder="0" src="https://connect.qlogic.com/connectiondashboard_new/ui/Login_New.aspx" scrolling="no" height="150" width="240"></iframe>'+ 
                                                    '</td>'+
                                                    '<td><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                                    '<td><img width="1" height="160" src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/1x1Blue_popup.jpg" border="0"></td>'+
                                                    '<td><IMG width=17px height=1px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                                    '<td valign="top" nowrap="nowrap">'+//Become & Find a Partner
                                                    	'<table align="left" border="0" cellpadding="0" cellspacing="0">'+
                                                    		/*
                                                        	'<tr>'+
                                                            	'<td><p><a style="text-decoration:none" href="http://www.qlogic.com/WhereToBuy/Pages/WhereToBuy.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">Find a Partner</span></a>'+
                                                                '<br><font class="QLBodyText">With QLogic Partners, find the<br>right solution for your<br>business.</font></p></td>'+                                                                  
                                                            '</tr>'+
                                                            '<tr><td style="height:5px;"><IMG height=5 border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td></tr>'+
                                                            */
                                                            '<tr>'+
                                                                '<td><p><a style="text-decoration:none" href="https://connect.qlogic.com/ConnectionDashBoard_NEW/ui/Partners.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">Become a Partner</span></a>'+
                                                                '<br><font class="QLBodyText">Enhance your company\'\s<br>value-add, expertise and<br>opportunities.</font></td>'+                                                                              
                                                            '</tr>'+
                                                            '<tr><td style="height:5px;"><IMG height=5 border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td></tr>'+
                                                            '<tr>'+
                                                                '<td><p><a style="text-decoration:none" href="https://connect.qlogic.com/ConnectionDashBoard_NEW/ui/Partners.aspx"><span class="ms-rteCustom-Arial_Bold_13_003464">QRewards</span></a>'+
                                                                '<br><font class="QLBodyText">QLogic’s Signature Partner<br/>Rewards Program that lets<br/>you earn prizes for selling<br/>QLogic products</font></td>'+                                                                              
                                                            '</tr>'+
                                            			'</table>'+
                            					  	'</td>'+
                                                  	'<td nowrap="nowrap"><IMG width=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+                                                                 
                                                '</tr>'+
                                                '<tr>'+
                                                      '<td colspan="4"><IMG height=10px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+                                                                  
                                                '</tr>'+
                                            '</table>'+                                                             
                                        '</td>'+
                                    	'<td class="QLtopnavPopupTopRight"><IMG width=18px border=0 src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/Popup/IE6PGNFidxedblank.gif"></td>'+
                                    '</tr>'+
                                    '<tr>'+
                                        '<td height="19" class="QLtopnavPopupBottomLeftCorner">&nbsp;</td>'+
                                        '<td height="19" class="QLtopnavPopupBottomRepeatX">&nbsp;</td>'+
                                        '<td height="19" class="QLtopnavPopupBottomRightCorner">&nbsp;</td>'+
                                    '</tr>'+
                                '</table>'+
                                '</div>'+
    						'</div>'+
                    	'</td>'+
            		'</tr>'+
            	'</table>');
            }
		}
    },
    ////////////////////////////////////////FOOTER/////////////////////////////////////////////////////////////////
    QLshowFooter: function(){
    	if($("#QLfooterPlaceholder").length>0) {
        	var oYear = (new Date).getFullYear();
        	$("#QLfooterPlaceholder").html('<table border="0" width="100%">'+
        		'<tr>'+
        			'<td align="left" valign="middle" nowrap="nowrap" style="width:400px"><font style="font-size:9px" class="QLBodyTextBold">Copyright © ' + oYear + ' QLogic Corp. All Rights Reserved.</font></td>'+
        			'<td width="100%" align="right" valign="middle" nowrap="nowrap" style="">'+
        					'<span class="ms-rteCustom-Arial_Bold_12_005FAD">'+
        					'<a style="font-size:9px" href="http://www.qlogic.com/CompanyInfo/Pages/PrivacyPolicy.aspx" class="QLBodyTextLinkNormal">Web Site Policies</a>&nbsp;&nbsp;|&nbsp;&nbsp;'+
        					'<a style="font-size:9px" href="http://www.qlogic.com/CompanyInfo/Pages/Feedback.aspx" class="QLBodyTextLinkNormal">Feedback</a>'+//&nbsp;&nbsp;|&nbsp;&nbsp;'+
        					'</span>'+
        					//'<font style="font-size:9px" class="QLBodyTextBold">Follow Us</font>&nbsp;'+
        			'</td>'+
        			/*
        			'<td style="padding-top:5px;" align="right" nowrap="nowrap">'+
        					'<a href="http://ir.qlogic.com/phoenix.zhtml?c=85695&p=rssSubscription&t=&id=&" class="QLBodyTextLink">'+
        					'<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/icon_RSS.jpg" border="0"></a>&nbsp;&nbsp;'+
        					'<a id="QLfaceBookLink" href="http://www.facebook.com/QLogicCorporation" class="QLBodyTextLink" target="_blank">'+
        					'<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/icon_Facebook.jpg" border="0"></a>&nbsp;&nbsp;'+
        					'<a href="http://twitter.com/qlogic" class="QLBodyTextLink" target="_blank">'+
        					'<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/icon_twitter.jpg" border="0"></a>&nbsp;&nbsp;'+
        					'<a href="http://www.linkedin.com/company/5983?trk=tyah" class="QLBodyTextLink" target="_blank">'+
        					'<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/icon_linkedin.jpg" width="20" height="20" border="0"></a>&nbsp;&nbsp;'+
        					'<a href="http://www.youtube.com/QLOGICTV" class="QLBodyTextLink" target="_blank">'+
        					'<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/icon_UTube.jpg" border="0"></a>&nbsp;&nbsp;'+
        					'<a href="http://itunes.apple.com/podcast/qlogic-technology-podcasts/id356980654" class="QLBodyTextLink" target="_blank">'+
        					'<img src="http://www.qlogic.com/SiteCollectionImages/CoreImages/Masterpage/icon_iTunes.jpg" border="0"></a>&nbsp;'+
        			'</td>'+
        			*/
        		'</tr>'+
        	'</table>');
        }
    },
    QLregisterEvents: function(){
    	if($("#internationalMenuActionsID").length==1) {
        	$("#internationalMenuActionsID").click(function() {    		
        		if(!$("#QLlanguageMenu1PlaceHolder").is(":visible")) {
        			var english=(QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].English : QLmasterpageJS.QLlanguageMenu[0].English);        			
        			english=(QLmasterpageJS.QLhpc ? english.replace('/hpc','/hpc?l=en') : english.replace('.com','.com?l=en'));
            		$("#QLlanguageMenu1PlaceHolder").html(
            			'<div id="internationalMenuID1" style=\"height:26px;\">'+
            				'<table id="QLinternationalTable" border="0" cellpadding="0" cellspacing="0" class="internationalMenuStyle">'+
            					'<tr valign="top" class="internationalMenuStyle" align="center" id="internationalMenuTrID">'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ english + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td>'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ (QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].German : QLmasterpageJS.QLlanguageMenu[0].German) + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td>'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ (QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].French : QLmasterpageJS.QLlanguageMenu[0].French) + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td>'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ (QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].Japanese : QLmasterpageJS.QLlanguageMenu[0].Japanese) + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td>'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ (QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].Chinese : QLmasterpageJS.QLlanguageMenu[0].Chinese) + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td>'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ (QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].Korean : QLmasterpageJS.QLlanguageMenu[0].Korean) + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td>'+
            						'<td valign="top" nowrap style=\"padding-left:3px;padding-right:3px;\">'+ (QLmasterpageJS.QLhpc ? QLmasterpageJS.QLlanguageMenuHPC[0].Russian : QLmasterpageJS.QLlanguageMenu[0].Russian) + '</td>'+
            						'<td style=\"padding-left:3px;padding-right:3px;\"><font class="internationalMenuItemDividerStyle">|</font></td><td valign="top" nowrap style=\"padding-left:3px;padding-right:8px;\"><a class="QLBodyTextLinkNormal" id="changeDefaultLanguage" href="' + (QLmasterpageJS.QLhpc ? 'http://www.qlogic.com/hpc?changeDefault=true' : 'http://www.qlogic.com?changeDefault=true') + '">Change Default</a></td>'+
            					'</tr>'+
            				'</table>'+
            		'</div>').fadeIn("slow");
                	$("#QLinternationalTable .QLlanguageMenu").each(function(ndx){ //set language font color
                		var languageURL=$(this).attr('href');
                		if(languageURL.indexOf('?l=en')!=-1) languageURL=languageURL.replace('?l=en','');
        				if((QLmasterpageJS.QLCurrentURL).indexOf(languageURL) != -1) $(this).css('color', 'blue');
        			});
            	} else {
            		$("#QLlanguageMenu1PlaceHolder").fadeOut("slow");
            	}
    		});
    	}
    	/*
		$(document).click(function(e) 
    	{ 	//click anywhere to hide the international menu
    		if($.trim(e.target.id) != 'internationalMenuActionsImage')
    			$("#QLlanguageMenu1PlaceHolder").fadeOut("slow");
    	});
    	*/
    	if($("#QLSearchboxInputID").length>0) {
        	$("#QLSearchboxInputID").keydown(function(e){
    			//submit search when enter key pressed
    			var code= (e.keyCode ? e.keyCode : e.which);
                if(code == 13){
                	var searchString='http://www.qlogic.com/Search/Pages/Search.aspx?k=' + $(this).val();
                	if(QLmasterpageJS.QLCurrentURL.indexOf('/hpc/')!=-1) {
                		searchString='http://www.qlogic.com/hpc/Pages/Search.aspx?k='+ $('#QLSearchboxInputID').val()+'&cs=This%20Site&u=http://www.qlogic.com/hpc';
                	}
                	window.location.href=searchString;
                	//window.location.href="http://www.qlogic.com/Search/Pages/Search.aspx?k=" + $(this).val();
                	return false;
                }
    		});
    	}
    	if($('.QLtopnavTabDiv').length > 0) {
    		$('.QLtopnavTabDiv').live("mouseenter mouseleave",function(e){
            	if (e.type == 'mouseover' || e.type == 'mouseenter') {
            		var $parentDiv=$(this);
            		//change image to active and delay for 3 millisecs
            		var oImage = $parentDiv.find("img:first");
        			oImage.attr("src", (oImage.attr("src")).replace(".jpg","_over.jpg"));
               		$(this).data('timeout',setTimeout(function() {
               			//show the menu after 3 millisecs
        				QLmasterpageJS.QLshowtopnavPopup($parentDiv.attr("id"));
                  	}, 300));
              	}
              	else {
               		clearTimeout($(this).data('timeout'));
               		var oImage = $(this).find("img:first");
        			oImage.attr("src", (oImage.attr("src")).replace("_over.jpg",".jpg"));
        			var oPopup= $(this).find("div:first");
        			if(oPopup.is(":visible"))
        				oPopup.hide();
              	}
    		});
    	}
    	//set cookie for english if comming from a foreign language site
    	if(this.QLCurrentURL.indexOf('l=en')!=-1) {
    		var ndxAtPages=QLmasterpageJS.QLCurrentURL.indexOf('pages');
    		var _cookieURL=QLmasterpageJS.QLCurrentURL.substring(0,ndxAtPages-1);
    		$.cookie("QLdefaultLanguage", _cookieURL, { expires: QLmasterpageJS.QLdefaultLanguageExpiration, path: '/' });
    	}//set default language
    	$(".QLlanguageMenu").live('click', function(e){
    		var _href=$(this).attr('href');
    		var _ndx=(_href.indexOf('/hpc')!=-1 ? _href.indexOf('/hpc') : _href.indexOf('.com'));
    		_href=_href.substring(0,_ndx+4);    		
        	if($("#rememberMyLanguage").length > 0) {
        		if($("#rememberMyLanguage").attr("checked"))
        			$.cookie("QLdefaultLanguage", _href, { expires: QLmasterpageJS.QLdefaultLanguageExpiration, path: '/' });
        		else
        			$.cookie("QLdefaultLanguage", _href, { path: '/' });
			}
			else 
				$.cookie("QLdefaultLanguage", _href, { expires: QLmasterpageJS.QLdefaultLanguageExpiration, path: '/' });
    	});
    	$('#QLaboutQLogic').live('click',function(){ //when in hpc site and click on about qlogic to get out of hpc site
    		var ndxAtCom=QLmasterpageJS.QLCurrentURL.indexOf('.com');
    		$.cookie("QLdefaultLanguage", QLmasterpageJS.QLCurrentURL.substring(0,ndxAtCom+4), { expires: QLmasterpageJS.QLdefaultLanguageExpiration, path: '/' });
    	});
    },
    QLisMobile:function() {
    	return( navigator.userAgent.match(/Android/i) ||
         navigator.userAgent.match(/webOS/i) ||
         navigator.userAgent.match(/iPhone/i) ||
         navigator.userAgent.match(/iPod/i) );
    },
    QLshowtopnavPopup: function(nMouseoverDivID){	
    	var oImage = $("#" + nMouseoverDivID).find("img:first");
    	var oPopup = $("#" + nMouseoverDivID).find("div:first");
    	if($.browser.msie && $.browser.version <="6.0")
    		oPopup.bgiframe(); //IE 6 hack when popup over select tag
    	oPopup.show();
    	var oPosition = oPopup.offset();
    	var oImageRightOffset = oImage.offset();
    	//image top offest + image height
    	oPopup.css("top", (parseInt(oImageRightOffset.top) + 29) + "px");
    	if(nMouseoverDivID == "QLtopnavTabDivIDPartnerlogin" || nMouseoverDivID == "QLtopnavTabDivIDDownloads") //position popup to left if it's partnerlogin
    		oPopup.css("left", (parseInt(oImageRightOffset.left) -35 + parseInt(oImage.attr("width")) - parseInt(oPopup.css("width"))) + "px");
    	else if(nMouseoverDivID == "QLtopnavTabDivIDResources")
    		oPopup.css("left", (parseInt(oImageRightOffset.left)-100) + "px");
    },
    QLshowDialog:function(){
    	$('<div class="jqmWindow" id="QLdialog">'+
        	'<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%" height="100%" style="background-color:#EEE;">'+
        		'<tr>'+
        		   '<td id="QLlanguageClose" style="padding-right:15px;padding-top:15px;"><a style="float:right;text-decoration:none;" href="#" class="jqmClose">Close(X)</a></td>'+
                '</tr>'+
        		'<tr>'+
        			'<td align="center" id="QLdialogContentPlaceholder" style="padding-left:15px;padding-right:15px;padding-top:15px;padding-bottom:15px;"></td>'+
        		'</tr>'+
        	'</table>'+
        '</div>').appendTo('body');
		 $('.jqmClose').click(function(){
			$('#QLdialog').jqm({ajax: this.href, trigger: '.QLdefaultLanguageTrigger', modal: 'true',
			target:'target'}).jqmHide();
			return false;
		});
    },
	QLshowLanguageMenu: function(){
		if(this.QLogic && $("#QLinternationalMenuPanel").length>0 && this.QLCurrentURL.indexOf("changedefault=true") != -1){
			this.QLshowDialog();
    		if($("#QLdialogContentPlaceholder").length > 0){
        		$("#QLdialogContentPlaceholder").html(
        			'<table id="QLdefaultLanguageDialogTable" border="0" cellpadding="0" cellspacing="7" bgcolor="#EEE">'+
        				'<tr>'+
        					'<td align="left"><font class="QLBodyText">Choose Your Language</font></td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].English : this.QLlanguageMenu[0].English) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].German : this.QLlanguageMenu[0].German) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].French : this.QLlanguageMenu[0].French) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].Japanese : this.QLlanguageMenu[0].Japanese) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].Chinese : this.QLlanguageMenu[0].Chinese) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].Korean : this.QLlanguageMenu[0].Korean) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;">' + (QLmasterpageJS.QLhpc ? this.QLlanguageMenuHPC[0].Russian : this.QLlanguageMenu[0].Russian) + '</td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;"><input type="checkbox" checked id="rememberMyLanguage"/>&nbsp;<font class="QLBodyText">Remember my selection</font></td>'+
        				'</tr>'+
        				'<tr>'+
        					'<td align="left" style="padding-left:35px;"><a href="#" class="QLdefaultLanguageTrigger" style="display:none;">&nbsp;</a></td>'+
        				'</tr>'+
        			'</table>');
                $('#QLdefaultLanguageDialogTable').find('.QLdefaultLanguageTrigger').click(function(){
        			$('#QLdialog').jqm({ajax: this.href, trigger: '.QLdefaultLanguageTrigger', modal: 'true',
        			target:'target'}).jqmShow();
        			return false;
        		}); 
                $("a.QLdefaultLanguageTrigger").trigger("click");
    		}
    	}
    },
    QLredirect: function(){    
		var cookieURL=$.cookie("QLdefaultLanguage");
		if(cookieURL != null) {
			var sRefererURL=(document.referrer);			
			if($.trim(sRefererURL).length==0){ //if user types in url instead of going from another url			
				if(this.QLCurrentURL.indexOf(cookieURL)==-1)
					window.location.href=cookieURL;
			}
			else{
				sRefererURL=sRefererURL.toLowerCase();
				if(sRefererURL.indexOf('http://qlogic.com')!=-1)
				sRefererURL=sRefererURL.replace('http://qlogic.com','http://www.qlogic.com');			
				if(sRefererURL.indexOf(cookieURL)!=-1){ //if referer == cookie, set cookie to current url				
					var ndxAtCom=sRefererURL.indexOf('.com');
					var cookieURL=sRefererURL.substring(0,ndxAtCom+8);
					if(cookieURL.indexOf('/hpc')==-1) //strip off after .com
						cookieURL=cookieURL.substring(0,(cookieURL.length)-4);
					$.cookie("QLdefaultLanguage", cookieURL, { expires: QLmasterpageJS.QLdefaultLanguageExpiration, path: '/' });
				}
				else
					window.location.href=cookieURL;
			}
		}
    },
    QLshowToolbar:function(){
    	if($('#qaCheckin_anchor').length==0){ //toolbar won't show when page is not checked-in
        	if(this.QLCurrentURL.indexOf('/careers/pages/')!=-1) //only for careers
        		$('body').append('<script id="QLtoolbar" src="http://cdn.wibiya.com/Toolbars/dir_1019/Toolbar_1019362/Loader_1019362.js" type="text/javascript"></script><noscript><a href="http://www.wibiya.com/">Web Toolbar by Wibiya</a></noscript>');
        	else
        		$('body').append('<script id="QLtoolbar" src="http://cdn.wibiya.com/Toolbars/dir_1004/Toolbar_1004374/Loader_1004374.js" type="text/javascript"></script><noscript><a href="http://www.wibiya.com/">Web Toolbar by Wibiya</a></noscript>');
        }
    },
    QLshowVendorToolbar:function(){
        $('body').append('<script id="QLtoolbar" src="http://cdn.wibiya.com/Toolbars/dir_1004/Toolbar_1004374/Loader_1004374.js" type="text/javascript"></script><noscript><a href="http://www.wibiya.com/">Web Toolbar by Wibiya</a></noscript>');
    }
}
$(document).ready(function() {
	QLmasterpageJS.QLshowLanguageMenu();
    QLmasterpageJS.QLshowInternationalPanel();
    QLmasterpageJS.QLshowSearchBox();
    QLmasterpageJS.QLshowTopNav();
    QLmasterpageJS.QLshowFooter();
    QLmasterpageJS.QLregisterEvents();
    //QLmasterpageJS.QLredirect();
    $("#internationalMenuActionsID").trigger("click");
    QLmasterpageJS.QLshowToolbar();
    //QLmasterpageJS.QLshowVendorToolbar();
});
//vendor master.js, do the following before send to vendors
//1.Set QLvendor:true
//2.For vendors using https://, replace http://www.qlogic.com/SiteCollectionImages with https://connect.qlogic.com/SiteCollectionImages
//3.uncomment QLmasterpageJS.QLshowVendorToolbar(); and comment QLmasterpageJS.QLshowToolbar() for vendors using http://
//4.comment both QLmasterpageJS.QLshowToolbar(); and QLmasterpageJS.QLshowVendorToolbar() for vendors using https://
