 var Images=new Array();
	 Images[0]="header/images/1.jpg";
	 Images[1]="header/images/2.jpg";
	 Images[2]="header/images/3.jpg";
	 Images[3]="header/images/4.jpg";





 var cnt='<a href="http://www.eyemagic.net" class="h_logo" style="display:none;"><img src="header/images/logo.jpg" width="319px" heigth="105px"/></a>';
 cnt+='<div class="h_menu">';
 cnt+='<a href="http://www.eyemagic.net/products.htm" class="lk_prod" style="display:none;">Products</a>';
 cnt+='<a href="http://www.eyemagic.net/about.htm" class="lk_about" style="display:none;">About</a>';
 cnt+='<a href="http://www.eyemagic.net/pics.htm" class="lk_pics" style="display:none;">Photos</a>';
 cnt+='<a href="http://www.eyemagic.net/video.htm" class="lk_video" style="display:none;">Video</a>';
 cnt+='<a href="http://www.eyemagic.net/faq.htm" class="lk_faq" style="display:none;">FAQ</a>';
 cnt+='<a href="http://www.eyemagic.net/testimonials.htm" class="lk_testimonials" style="display:none;">Testimonials</a>';
 cnt+='<a href="http://www.eyemagic.net/blog" class="lk_blog" style="display:none;">Blog</a>';
 cnt+='<a href="http://www.eyemagic.net/contact.php" class="lk_contact" style="display:none;">Contact Us</a>';
 cnt+='<a href="http://www.eyemagic.net/products.htm" class="lk_order" style="display:none;">Order</a>';
 cnt+='</div>';
 cnt+='<div class="slideshow_b"><div id="slideshow">';
 for(im=0;im<Images.length;im++){
   cnt+='<img src="'+Images[im]+'" ';
   if(im==0) cnt+=' class="active" ';
   cnt+='/>';
 }
 cnt+='</div></div>';
 document.getElementById("header").innerHTML=cnt;

 var hd_css='';
 hd_css+='<link rel="stylesheet" type="text/css" href="header/header.css">';
 document.write(hd_css);

 load = function() {
   load.getScript("header/jquery-1.6.2.min.js");
   load.tryReady(0);
 }

 load.getScript = function(filename) {
   var script = document.createElement('script');
   script.setAttribute("type","text/javascript");
   script.setAttribute("src", filename);
   if (typeof script!="undefined")
   document.getElementsByTagName("head")[0].appendChild(script);

 }

 load.tryReady = function(time_elapsed) {
   if (typeof $ == "undefined") {if (time_elapsed <= 5000) {setTimeout("load.tryReady(" + (time_elapsed + 200) + ")", 200);} else {}
   } else {
	$(function() {
	    setInterval( "slideSwitch()", 5000 );
	});
   }
 }

function slideSwitch() {
    var $active = $('#slideshow IMG.active');
    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');
    $active.addClass('last-active');
    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}


load();
