// JavaScript Document
$(document).ready(function(){
						   
	$('#slides').cycle({ 
    fx:     'fade', 
    speed:  1000, 
    timeout: 8000,
	random: true,
	cleartype: true

	});
						   
		$(".bulletlist li").hover(
						   
	   function () {
      $(this).animate({paddingLeft: "20px"}, {queue:false, duration:300});
						   },
		function () {
      $(this).animate({paddingLeft: "10px"}, {queue:false, duration:300});
						   }				   
						   
    );					   
						   
						   
    $("#nav-one li").hover(
        function(){ $("ul", this).fadeIn(); }, 
        function() {  $("ul", this).fadeOut();} 
    );
    if (document.all) {
        $("#nav-one li").hoverClass ("sfHover");
    }
	
	

	
	
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};    