	function toggleMenu(menID){
		if ($('.menu'+menID).is(":hidden")) {
		$('.sub').hide();	
		$('.menu'+menID).show('fast');
		} else {
		$('.sub').hide();
		}
	}
$(document).ready(function() { 
$('a[href=#logo]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
$('#nav').removeClass('hover');
$('#bin').supersleight();  

 });



