$(document).ready(function(){

	$(".logo").click(function(){ window.location = "/"; });

	$(".tooglemore").click(function(){ 
		
		$('#tooglemore').animate({
    		height: 'toggle'
  		}, 600, function() {
   	
 		});
	 }); 

});



