/* Show / hide  */
	function show_more(obj) {
	    if (document.getElementById(obj).style.display=='none') {
	        document.getElementById(obj).style.display='';
	    }
	    else {
	        document.getElementById(obj).style.display='none';
	    }
	}
        
/* slider  */        
        			$(function() {
				//	Basic carousel + timer
				$('#foo1').carouFredSel({
										direction: "up",
					auto: {
                        pauseDuration: 4000,
						pauseOnHover: 'resume',
						onPauseStart: function( percentage, duration ) {
							$(this).trigger( 'configuration', ['width', function( value ) { 
								$('#timer1').stop().animate({
									width: value
								}, {
									duration: duration,
									easing: 'linear'
								});
							}]);
						},
						onPauseEnd: function( percentage, duration ) {
							$('#timer1').stop().width( 0 );
						},
						onPausePause: function( percentage, duration ) {
							$('#timer1').stop();
						}
					}
				}); });
					
/* menu */
	
					$(function(){
$('#menu').find('li').hover(function(){
		$(this).find('ul')
		.removeClass('noJS')
		.stop(true, true).slideToggle('fast');
	});
	
});
					

