/*

Created for Precious by michael@michaelbystrom.com

*/

$(document).ready(function() {
	$('.knappar').hover(	
		function() {
			var position = $(this).position();
			$(this).find('.knapp-wrap').fadeIn('300');
			$(this).find('.knapp-wrap').css({
				left:position.left - 35,
				top:position.top - $(this).find('.knapp-wrap').height() +120
			})
		},
		function() {
			$(this).find('.knapp-wrap').fadeOut('100');	
		}
	);
});


