// JavaScript Document
var linkList = [
	{text:'请选择佳能中国网站群', value:''},
	{text:'耗材积分活动', value:'http://211.100.29.102/consumable/index.jsp'},
	{text:'佳能耗材网站', value:'http://www.canon.com.cn/consumable/index.html'},
	{text:'佳能公益事业', value:'http://www.canon.com.cn/social/'},
	{text:'大幅面打印机产品网站', value:'http://www.canon.com.cn/products/pro-printer/imageprograf/newlfp_3/index.html'},
	{text:'佳能交流空间·北京', value:'http://www.canon.com.cn/cii_showroom/'},
	{text:'佳能商务展厅·北京', value:'http://www.canon.com.cn/bis_showroom/'},
	{text:'佳能交流空间·上海', value:'http://www.canon.com.cn/sh_showroom/'},
	{text:'i-model 助学网站', value:'http://www.canon.com.cn/front/marketing/static/helpstudy_0724.html'},
	{text:'激光一体机网上体验广场', value:'http://www.canon.com.cn/mfp_square/'}				
]

$('document').ready(function(){
	jQuery.each(linkList, function() {
		$(document.createElement('option')).attr('value', this['value']).text(this['text']).appendTo('#footerSelect');
	})
	$("#footerSelect").unbind("change");
	$("#footerSelect").change(function() {
			var targetURL = $("#footerSelect option:selected").eq(0).attr('value');
			targetURL ? window.open(targetURL) : '';
		}
	);
})
