// JavaScript Document	
$('document').ready(function(){
	fpImageSource = new Array();
	fpImageSource[0] = new Array();
	fpImageSource[0]['source'] = "images/txt_nut.png";
	fpImageSource[0]['alt'] = 'American Nut Mix Roasted And Salted';
	fpImageSource[1] = new Array();
	fpImageSource[1]['source'] = "images/txt_cashew.png";
	fpImageSource[1]['alt'] = 'Brazilian Cashews Roasted and Salted';
	fpImageSource[2] = new Array();
	fpImageSource[2]['source'] = "images/txt_persian.png";
	fpImageSource[2]['alt'] = 'Persian Pistachios Roasted and Salted';
	fpImageSource[3] = new Array();
	fpImageSource[3]['source'] = "images/txt_sour.png";
	fpImageSource[3]['alt'] = 'Sour Cream With Mild Mexican Chilli Flavour Tortillas';
	fpImageSource[3] = new Array();
	fpImageSource[3]['source'] = "images/txt_persian.png";
	fpImageSource[3]['alt'] = 'Persian Pistachios Roasted and Salted';
	fpImageSource[4] = new Array();
	fpImageSource[4]['source'] = "images/txt_salsa.png";
	fpImageSource[4]['alt'] = 'Salsa With Mexican Chilli Flavour Tortillas';
	fpImageSource[5] = new Array();
	fpImageSource[5]['source'] = "images/txt_indian.png";
	fpImageSource[5]['alt'] = 'Indian Red Chilli Flavour Crisps';
	fpImageSource[6] = new Array();
	fpImageSource[6]['source'] = "images/txt_ched.png";
	fpImageSource[6]['alt'] = 'Irish Cheddar With Onion Chutney Flavour Crisps';
	fpImageSource[7] = new Array();
	fpImageSource[7]['source'] = "images/txt_sea.png";
	fpImageSource[7]['alt'] = 'Sea Salt &amp; Indonesian Black Peppercorn Flavour Crisps';
	fpImageSource[8] = new Array();
	fpImageSource[8]['source'] = "images/txt_chilli.png";
	fpImageSource[8]['alt'] = 'Mexican Sweet Chilli Flavour Crisps';
	var browser=navigator.appName;
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
 		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
 		if (ieversion<=6)
		{
			fpImageSource = new Array();
			fpImageSource[0] = new Array();
			fpImageSource[0]['source'] = "images/txt_nut.gif";
			fpImageSource[0]['alt'] = 'American Nut Mix Roasted And Salted';
			fpImageSource[1] = new Array();
			fpImageSource[1]['source'] = "images/txt_cashew.gif";
			fpImageSource[1]['alt'] = 'Brazilian Cashews Roasted and Salted';
			fpImageSource[2] = new Array();
			fpImageSource[2]['source'] = "images/txt_persian.gif";
			fpImageSource[2]['alt'] = 'Persian Pistachios Roasted and Salted';
			fpImageSource[3] = new Array();
			fpImageSource[3]['source'] = "images/txt_sour.gif";
			fpImageSource[3]['alt'] = 'Sour Cream With Mild Mexican Chilli Flavour Tortillas';
			fpImageSource[3] = new Array();
			fpImageSource[3]['source'] = "images/txt_persian.gif";
			fpImageSource[3]['alt'] = 'Persian Pistachios Roasted and Salted';
			fpImageSource[4] = new Array();
			fpImageSource[4]['source'] = "images/txt_salsa.gif";
			fpImageSource[4]['alt'] = 'Salsa With Mexican Chilli Flavour Tortillas';
			fpImageSource[5] = new Array();
			fpImageSource[5]['source'] = "images/txt_indian.gif";
			fpImageSource[5]['alt'] = 'Indian Red Chilli Flavour Crisps';
			fpImageSource[6] = new Array();
			fpImageSource[6]['source'] = "images/txt_ched.gif";
			fpImageSource[6]['alt'] = 'Irish Cheddar With Onion Chutney Flavour Crisps';
			fpImageSource[7] = new Array();
			fpImageSource[7]['source'] = "images/txt_sea.gif";
			fpImageSource[7]['alt'] = 'Sea Salt &amp; Indonesian Black Peppercorn Flavour Crisps';
			fpImageSource[8] = new Array();
			fpImageSource[8]['source'] = "images/txt_chilli.gif";
			fpImageSource[8]['alt'] = 'Mexican Sweet Chilli Flavour Crisps';	
		}
	}
	
	$('area').mouseover(function(e){
		var id = $(e.target).attr('id');
		$("img#nav1").attr({'src':fpImageSource[id]['source'], 'alt':fpImageSource[id]['alt']});
	}), $('area').mouseout(function() {
		$("img#nav1").attr("src","images/txt_explore.gif");
	});	
});