jQuery(document).ready(function($) {
	
	// Blind Tigers 4/1/2011
	
	$( ".innerflip" ).hover(function(){
		$( this )
			.animate( { top: "-41px" }, { queue: false, duration: 150 } );
	}, function() {
		$( this )
			.animate( { top: "0px" }, { queue: false, duration: 150 } )
	});
	
	$( "#sidebarInner .innerflip" ).hover(function(){
		$( this )
			.animate( { top: "-41px" }, { queue: false, duration: 150 } );
	}, function() {
		$( this )
			.animate( { top: "0px" }, { queue: false, duration: 150 } )
	});
	
});
