 jQuery(document).ready(function() {
	jQuery('.topGreenCenterMenu a').add('.homeSlideMenu a').mouseover(function() {
		getValue(this.href);
	});
 });

var param_id;

function changeFlashImage(param_id)
{
	
	if (navigator.appName.indexOf("Microsoft") != -1) 
	{
        	window["LAS_intro05"].changeFlashImage(param_id);
   	}
    	else 
	{
        	document["LAS_intro05"].changeFlashImage(param_id);
	}
}

function getValue(url)
{
  // Next, split the url by the ?
  var qparts = url.split("?");

 // Then find the querystring, everything after the ?
	  var query = qparts[1];
	 // Next, split the url by the =
	  var arpageid = url.split("=");

	// Then find the querystring, everything after the =
	  var pageid = arpageid[1];
	  // return pageid
	  changeFlashImage(pageid);

	 
  
}
