	$(document).ready(function() {
			
			$('.tooltipQuestion')
			.mouseout(function(){
				$('.tooltipAnswer').hide()})
			
			$('.tooltip').mouseover(function(){	$('.tooltipAnswer', this).show() })
			
			$('.tooltipAnswer')
			.mouseover(function(){$(this).show()})
			.mouseout(function(){$(this).hide()})
			
			$('.attachFile a')
			.click(function(){
				if ( $(this).hasClass("arrowLinkDown") ) {
				 $(this).removeClass("arrowLinkDown"); 
				} else {
				 $(this).addClass("arrowLinkDown");
				}

				$('.attachFile div').toggle()
			})

    
		});
