﻿$(document).ready(function() {
	$("#topNavPanel >td").each(function(){
		$(this).hover(
			function () {
				$(this).addClass("topNavTabImageOver");
			},
			function () {
				$(this).removeClass("topNavTabImageOver");
			}
		);
	});

	var sQuickLink =
	'<div class="page-padding-right">'+
		'<select name="quickLinkDropdown" onChange="Navigate(this.value,\'SAME\')">'+
			'<option value="0">Quick Links</option>'+
			'<option value="http://ir.qlogic.com/phoenix.zhtml?c=85695&amp;p=irol-financialNews&amp;nyo=0">Press Releases</option>'+
			'<option value="http://ir.qlogic.com/phoenix.zhtml?c=85695&amp;p=irol-irhome">Investor Relations</option>'+
			'<option value="http://connect.qlogic.com/connectiondashboard/login.aspx">QLogic Partner Login</option>'+
			'<option value="http://www.qlogic.com/interoperability/">Interoperability</option>'+
			'<option value="http://www.qlogic.com/EducationAndResources/Pages/SANWhitePapers.aspx">White Papers</option>'+
			'<option value="http://www.qlogic.com/EducationAndResources/Pages/SANDataSheets.aspx">Data Sheets</option>'+
			'<option value="http://www.qlogic.com/CompanyInfo/Careers/Pages/CareersHome.aspx">Careers</option>'+
			'<option value="http://www.qlogic.com/CompanyInfo/Pages/ContactUs.aspx">Contact Us</option>'+
			'<option value="http://www.qlogic.com/CompanyInfo/Pages/Feedback.aspx">Feedback</option>'+
		'</select>'+
	'</div>';
	$("#dotcomQuickLinkID").html(sQuickLink);
	
	var oYear = (new Date).getFullYear();
	var sFooter =
	'<table border="0" width="100%">'+
		'<tr>'+
			'<td align="left" nowrap="nowrap">'+
				'<font color="#6E6E6E" face="Arial" size="1">Copyright © ' + oYear + ' QLogic Corp. All Rights Reserved.</font>'+
			'</td>'+
			'<td align="right" nowrap="nowrap">'+
				'<font color="#ffffff" face="Arial" size="1">'+				
					'<a href="http://www.qlogic.com/CompanyInfo/Pages/WebsitePolicies.aspx" class="FooterStyle3"><span class="FooterStyle2">Website Policies</span></a>&nbsp; |&nbsp; '+
					'<a href="http://www.qlogic.com/CompanyInfo/Pages/Feedback.aspx" class="FooterStyle3"><span class="FooterStyle2">Feedback</span></a>&nbsp; |&nbsp;'+
					'<a href="http://ir.qlogic.com/" class="FooterStyle3"><span class="FooterStyle2">Investor Relations</span></a>&nbsp; |&nbsp; '+
					'<a href="http://www.qlogic.com/CompanyInfo/Pages/ContactUs.aspx" class="FooterStyle3"><span class="FooterStyle2">Contact QLogic</span></a>&nbsp; |&nbsp;'+
					'<span class="style2">Follow Us&nbsp;&nbsp;'+
						'<a href="http://ir.qlogic.com/phoenix.zhtml?c=85695&p=rssSubscription&t=&id=&" class="style3">'+
						'<img src="http://www.qlogic.com/SiteCollectionImages/icons/rss-feed-sm.jpg" border="0"></a>&nbsp;'+
						'<a href="http://www.facebook.com/home.php#/pages/Aliso-Viejo-CA/QLogic-Global-Channel-Partners/134484279060?ref=ts" class="style3" target="_blank">'+
						'<img src="http://www.qlogic.com/SiteCollectionImages/icons/facebook-sm.jpg" border="0"></a>&nbsp;'+
						'<a href="http://twitter.com/qlogic" class="style3" target="_blank">'+
						'<img src="http://www.qlogic.com/SiteCollectionImages/icons/twitter-sm.jpg" border="0"></a>&nbsp;'+
						'<a href="http://www.youtube.com/QLOGICTV" class="style3" target="_blank">'+
						'<img src="http://www.qlogic.com/SiteCollectionImages/icons/uTube-sm.jpg" border="0"></a>&nbsp;'+
						'<a href="http://itunes.apple.com/podcast/qlogic-technology-podcasts/id356980654" class="style3" target="_blank">'+
						'<img src="http://www.qlogic.com/SiteCollectionImages/icons/itunes-sm.jpg" border="0"></a>&nbsp;'+
					'</span>'+
				'</font>'+
			'</td>'+
		'</tr>'+
	'</table>';
	$("#dotcomFooterID").html(sFooter);

});