﻿jQuery(function(){
			jQuery('ul.sf-menu').superfish();
		});

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;


$(function() {
    // run the code in the markup!
    //$('#s1').cycle('fade');
    
    $('#s1').cycle({ 
    fx:    'shuffle', 
    speed:  1500 ,
    timeout:  15000 
 });
 
 $('#s3').cycle({ 
   fx:    'fade', 
   speed:  1500 ,
   timeout:  15000 
 });

 });
