function showCover()
{
	$(".cover", this).stop().animate({top:'180px'},{queue:false, duration: 200});
}

function hideCover()
{
	$(".cover", this).stop().animate({top:'300px'},{queue:false, duration: 200});
}

$(document).ready(function(){
	$('.thing').hoverIntent({
		sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
		interval: 250,   // number = milliseconds of polling interval
		over: showCover,  // function = onMouseOver callback (required)
		timeout: 0,   // number = milliseconds delay before onMouseOut function call
		out: hideCover   // function = onMouseOut callback (required)
	});
	
	
	$("#twitter").getTwitter({
		userName: "joepour",
		numTweets: 100,
		loaderText: "Loading tweets...",
		slideIn: true,
		slideDuration: 750,
		showHeading: true,
		headingText: "",
		showProfileLink: false,
		showTimestamp: true
	});
});

// IE6 fix for html5 elements
// For discussion and comments, see: http://remysharp.com/2009/01/07/html5-enabling-script/
(function(){if(!/*@cc_on!@*/0)return;var e = "abbr,article,aside,audio,bb,canvas,datagrid,datalist,details,dialog,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(',');for(var i=0;i<e.length;i++){document.createElement(e[i])}})()

