	$(function() {
  $('a.hide').click(function(){
     $('div.postmain').hide(300);
   });
    $('a.show').click(function(){
     $('div.postmain').show(300);
   });
   
 });
		
		$(function() {
		
			$('#nav a').hover(
			
			function() {
			
				$(this).stop().animate({'color': '#fff',},150);	
			
			},
						
			function() { 
			
				$(this).stop().animate({'color': '#c1c1c1',});
				
			});
		
		});
		
		$(function() {
		
			$('#nav span').hover(
			
			function() {
			
				$(this).stop().animate({'color': '#F79535',},150);	
			
			},
						
			function() { 
			
				$(this).stop().animate({'color': '#c1c1c1',});
				
			});
		
		});
		
		$(function() {
		
			$('#nav a').hover(
			
			function() {
			
				$(this).stop().animate({'color': '#fff',},150);	
			
			},
						
			function() { 
			
				$(this).stop().animate({'color': '#c1c1c1',});
				
			});
		
		});

		$(function() {
		
			$('#welcome a').hover(
			
			function() {
			
				$(this).stop().animate({"color": "#ff8c98",},150);
			
			},
						
			function() { 
			
				$(this).stop().animate({"color": "#fd797f",},150);
				
			});
		
		});
		
		$(function() {
		
			$('#tweet img').hover(
			
			function() {
			
				$(this).stop().fadeTo(200, 0.6);
			
			},
						
			function() { 
			
				$(this).stop().fadeTo(200, 0.3);
				
			});
		
		});
		
		$(function() {

   		 $('#search input[type=text]').focus(function() {

      			$(this).val('');

    	  });

		 });
		 
		 $(function() {

   		 $('#search input[type=text]').blur(function() {

      			$(this).val('Search ...');

    	  });

		 });
		 
		 $(function() {
		
			$('#social .network').hover(
			
			function() {
			
				$(this).stop().animate({"padding-left": "5px",},150);
			
			},
						
			function() { 
			
				$(this).stop().animate({"padding-left": "0px",},150);
				
			});
		
		});
		
		$(function() {
		
			$('#logo img').hover(
			
			function() {
			
				$(this).stop().fadeTo(300, 0.2);
			
			},
						
			function() { 
			
				$(this).stop().fadeTo(300, 0.075);
				
			});
		
		});
		
		$(function() {
		
			$('#footer a').hover(
			
			function() {
			
				$(this).stop().animate({"color": "#555",},200);
			
			},
						
			function() { 
			
				$(this).stop().animate({"color": "#747474",},200);
				
			});
		
		});
		
		$(function() {
		
			$('#contact #submit').hover(
			
			function() {
			
				$(this).stop().animate({"color": "#fff","background-color": "#adadad",},300);
			
			},
						
			function() { 
			
				$(this).stop().animate({"color": "#808080","background-color": "#fff",},300);
				
			});
		
		});
		
		$(function() {
		
			$('#comment #submit').hover(
			
			function() {
			
				$(this).stop().animate({"color": "#fff","background-color": "#adadad",},300);
			
			},
						
			function() { 
			
				$(this).stop().animate({"color": "#808080","background-color": "#fff",},300);
				
			});
		
		});