$(document).ready(function(){
		$('#aspat').hide();
		
		$('#asiakaspalvelupisteet').click(function(){
			$('#aspat').stop(true,true).slideToggle();
		});
			
		$('#bottom-col img').each(function() {
			$(this).qtip({
				content: $(this).next('div'),
				style:{
					border:{
						radius:2
					},
					tip: 'bottomLeft',
					width:'270px'
				},
				position:{
					corner:{
					target: 'topMiddle',
					tooltip: 'bottomLeft'
					}
			    }
			});
		});

});
