// preload rollover images

if (document.images) {
  pic0= new Image(); 
  pic0.src="images/bg.jpg"; 

  pic1= new Image(); 
  pic1.src="images/search-light_on.jpg"; 

  pic2= new Image(); 
  pic2.src="images/dvd_on.jpg"; 

  pic3= new Image(); 
  pic3.src="images/adventure-canteen_on.jpg"; 
  
  pic4= new Image(); 
  pic4.src="images/search-light2_on.jpg"; 
  
  pic5= new Image(); 
  pic5.src="images/adventure-spoons_on.jpg"; 
  
  pic6= new Image(); 
  pic6.src="images/dvd2_on.jpg"; 
}

function lightup(imgName) {
	if(document.images) {
		imgOn=eval(imgName + ".src");
		document[imgName].src= imgOn;
	}
 }

function turnoff(imgName) {
	if(document.images) {
		document[imgName].src = document[imgName].src.replace(/_on.jpg/g, ".jpg");
	}
 }

 function resizeWin(newLoc, newWidth, newHeight) {
	newWin = open("",newLoc,"scrollbars=no,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
 }

function showoffers(){
	var str='';
	str+='		<div id="inner-wrapper">';
	str+='			<a href="http:\/\/www.Kelloggs.com" target="_blank"><img src="images\/k-logo.jpg" width="131" height="51" border="0" alt="Kellogg\'s" id="wrapper-logo"\/><\/a>';
	str+='			<a href="leaving.html" onclick="resizeWin(\'indiana-jones\',430,145)" target="indiana-jones"><img src="images\/ij-logo.jpg" width="478" height="166" border="0" alt="Indiana Jones" id="wrapper-ij-logo"\/><\/a>';
	str+='		<img src="images\/in-theaters.jpg" width="163" height="24" border="0" alt="Indiana Jones" id="in-theaters"\/>';
	str+='		<img src="images\/headline1.jpg" width="441" height="67" border="0" alt="Discover these exclusive offers on specially marked" id="headline1"\/>';
	str+='		<img src="images\/headline2.jpg" width="324" height="32" border="0" alt="Kellogg products" id="headline2"\/>';
	str+='		<img src="images\/click.jpg" width="183" height="37" border="0" alt="Click on any package to learn more" id="click"\/>';
	str+='		<a href="http:\/\/www2.kelloggs.com/Promotion/PromotionDetail.aspx?PID=12536" target="_blank" onMouseover="lightup(\'pic1\')" onMouseout="turnoff(\'pic1\')"><img src="images\/search-light.jpg" name="pic1" width="153" height="111" border="0" alt="Kellogg\'s Indiana Jones Search Light" id="box1"\/><\/a>';
	str+='		<a href="http:\/\/www2.kelloggs.com\/Promotion\/PromotionDetail.aspx?PID=12416" target="_blank" onMouseover="lightup(\'pic2\')" onMouseout="turnoff(\'pic2\')"><img src="images\/dvd.jpg" name="pic2" width="166" height="178" border="0" alt="Kellogg\'s Indiana Jones Raiders DVD" id="box2"\/><\/a>';		
	str+='		<a href="http:\/\/www2.kelloggs.com\/Promotion\/PromotionDetail.aspx?PID=12840" target="_blank" onMouseover="lightup(\'pic3\')" onMouseout="turnoff(\'pic3\')"><img src="images\/adventure-canteen.jpg" name="pic3" width="121" height="236" border="0" alt="Kellogg\'s Indiana Jones Canteen" id="box3"\/><\/a>';
	str+='		<a href="http:\/\/www2.kelloggs.com\/Promotion\/PromotionDetail.aspx?PID=12856" target="_blank" onMouseover="lightup(\'pic4\')" onMouseout="turnoff(\'pic4\')"><img src="images\/search-light2.jpg" name="pic4" width="136" height="272" border="0" alt="Kellogg\'s Indiana Jones Search Light" id="box4"\/><\/a>';
	str+='		<a href="http:\/\/www2.kelloggs.com\/Promotion\/PromotionDetail.aspx?PID=12517" target="_blank" onMouseover="lightup(\'pic5\')" onMouseout="turnoff(\'pic5\')"><img src="images\/adventure-spoons.jpg" name="pic5" width="142" height="278" border="0" alt="Kellogg\'s Indiana Jones Adventure Spoon" id="box5"\/><\/a>';
	str+='		<a href="http:\/\/www2.kelloggs.com\/Promotion\/PromotionDetail.aspx?PID=12639" target="_blank" onMouseover="lightup(\'pic6\')" onMouseout="turnoff(\'pic6\')"><img src="images\/dvd2.jpg" width="145" name="pic6" height="258" border="0" alt="Kellogg\'s Indiana Jones Adventure Spoon" id="box6"\/><\/a>';
	str+='		<div id="wrapper-footer">';
	str+='			<div id="footer-left">&reg;, TM, &copy; 2008 Kellogg NA Co. | <a href="http:\/\/www.kelloggs.com\/us\/privacy\/" target="_blank">Privacy<\/a> | <a href="http:\/\/www.kelloggs.com\/us\/legal\/" target="_blank">Legal<\/a> | <a href="http:\/\/www.kelloggs.com\/contact\/" target="_blank">Contact Us<\/a> | <a href="https:\/\/www.kelloggs.com\/cgi-bin\/CustomerCenter\/front.pl" target="_blank">My Account<\/a>';
	str+='			</div>';
	str+='		<div id="footer-center">TM &amp; &copy 2008 Lucasfilm Ltd. All Rights Reserved. Used Under Authorization.<\/div>';
	str+='		<div id="footer-right"><a href="http:\/\/www.Kelloggs.com" target="_blank">Kelloggs.com<\/a> | <a href="http:\/\/keebler.com" target="_blank">Keebler.com<\/a><\/div>';
	str+='		<\/div>';
	str+='		<\/div>';

	//replace what HTML is currently inside the Flash container
	document.getElementById("flashcontent").innerHTML = str;
}