$(document).ready(function(){
	
	$( '.question' ).hover( function(){
			var t = $( 'span', this ).text();
			var i = $( this ).attr( 'rel' );
			var q = $( this ).parent();
			q.append( '<span class="q'+i+' hide">'+t+'</span>' );
			$( 'span.q'+i, q ).fadeIn();
			if( i == 4 ) $( '.imgactive', this ).fadeIn();
		}, function(){
			var i = $( this ).attr( 'rel' );
			var q = $( this ).parent();
			$( 'span.q'+i, q ).fadeOut( 'fast', function(){ $( this ).remove(); } );
			if( i == 4 ) $( '.imgactive', this ).fadeOut();
		}
	);

});
