jQuery(document).ready(function() {
	sfHover();
	
    jQuery('#mycarousel').jcarousel({
        auto: 3,
        scroll: 1,
        animation: 'slow',
        wrap: 'circular',
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
    /*jQuery('#newslist').jcarousel({
        auto: 3,
        scroll: 1,
        vertical:false,
        animation: 'slow',
        wrap: 'circular',
        buttonNextHTML: null,
        buttonPrevHTML: null
    });*/
});

sfHover = function() {
	jQuery("#topnav li").mouseover(function(el) {
				jQuery(this).addClass("sfhover");
			});
	jQuery("#topnav li").mouseout(function(el) {
				jQuery(this).removeClass("sfhover");
			});
}
