$(function() {
  $('a').hover(function() {
  //console.log('omg');
  return false;
  });

$('.current-cat').removeClass('cat-item'); // remove class to prevent current category to move back
  
$('.cat-item').hover(
	function () {
		//console.log('hover');
		$(this).children('a').stop().animate(
		{ marginLeft: "15px", opacity: 1}, 
		{ duration: 200, queue: false });
	},
	function() {
		//console.log('out');
		$(this).children('a').stop().animate(
		{ marginLeft: "0px", opacity: 1}, 
		{ duration: 200, queue: false });
});

$('.imgMod').addClass('shadow');
$('.quoted').addClass('shadow');

$.getJSON("http://twitter.com/statuses/user_timeline/honshi.json?callback=?", function(data) {
     $("#twitter").html(data[0].text);
});
  
});

