// JavaScript Document
//jQuery(function(){jQuery('ul.sf-menu').superfish({delay:0, speed: 'fast', autoArrows: false, dropShadows: false});});


Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('h3');

$(document).ready(function() {
   			$('.in-slideshow-rotate').cycle({fx:'fade', timeout:2000,  speed:500, pager:'.splash-control', pagerAnchorBuilder: function(idx, slide) { return '<li class="in-splash-paginate-no"><a href="#"></a></li>'; } });
});

jQuery(document).ready(function() {
    jQuery('#jcarousel-content-3').jcarousel({wrap: 'circular', scroll:3});
	jQuery('#jcarousel-content-5').jcarousel({wrap: 'circular', scroll:5});
	jQuery('#jcarousel-content-1').jcarousel({wrap: 'circular', scroll:1});
});

jQuery(function(){
	jQuery('ul.sf-menu').superfish({delay: 1000, animation: {opacity:'show',height:'show'}, dropShadows: false, autoArrows: false, speed: 'fast'});
});


//Nested Side Bar Menu (Mar 20th, 09)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["sidebarmenu1"] //Enter id(s) of each Side Bar Menu's main UL, separated by commas

function initsidebarmenu(){
for (var i=0; i<menuids.length; i++){
  var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
    for (var t=0; t<ultags.length; t++){
    ultags[t].parentNode.getElementsByTagName("a")[0].className+=" subfolderstyle"
  if (ultags[t].parentNode.parentNode.id==menuids[i]) //if this is a first level submenu
   ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px" //dynamically position first level submenus to be width of main menu item
  else //else if this is a sub level submenu (ul)
    ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it
    ultags[t].parentNode.onmouseover=function(){
    this.getElementsByTagName("ul")[0].style.display="block"
    }
    ultags[t].parentNode.onmouseout=function(){
    this.getElementsByTagName("ul")[0].style.display="none"
    }
    }
  for (var t=ultags.length-1; t>-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars
  ultags[t].style.visibility="visible"
  ultags[t].style.display="none"
  }
  }
}

if (window.addEventListener)
window.addEventListener("load", initsidebarmenu, false)
else if (window.attachEvent)
window.attachEvent("onload", initsidebarmenu)


