$.noConflict();
  jQuery(document).ready(function($) {
    // Code that uses jQuery's $ can follow here.
	function switchTo(i) {  $('#switches li').css('color','#444').eq(i).css('color','#9c0'); 
			$('#switches li').css('font-weight','normal').eq(i).css('font-weight','bold'); 
			$('#slides div').css('display','none').eq(i).css('display','block');}
			$(document).ready(function(){ 
			$('#switches li').mouseover(function(event){    switchTo($('#switches li').index(event.target));  });  switchTo(0);})
  });


