$(document).ready(function(){
		
		var yUp = 0; 
		var yDowm = 0;
		var left = 0;
		
		$("#brandbuilder").hover(function() {
			yUp = $("#brandbuilder").position().top - 2 + "px";
			yDown = $("#brandbuilder").position().top + 50 + "px";
			left = $("#brandbuilder").position().left + 140 + "px";
			$("#brandbuilderBubble").css("top" , yDown);
			$("#brandbuilderBubble").css("left" , left);
			$("#brandbuilderBubble").css("display", "block");
			$("#brandbuilderBubble").animate({ top : yUp, opacity : 1 }, 400);
			//console.log(yDown);

		},function() {var cssObj = {
					'display' : 'none',
					'top' : yDown,
					'opacity' : 0
				}
				
		$("#brandbuilderBubble").css(cssObj);} );
		
		$("#mediacenter").hover(function() {
			yUp = $("#mediacenter").position().top - 2 + "px";
			yDown = $("#mediacenter").position().top + 50 + "px";
			left = $("#mediacenter").position().left + 140 + "px";
			$("#mediacenterBubble").css("top" , yDown);
			$("#mediacenterBubble").css("left" , left);
			$("#mediacenterBubble").css("display", "block");
			$("#mediacenterBubble").animate({ top : yUp, opacity : 1 }, 400);
			//console.log(yDown);

		},function() {var cssObj = {
					'display' : 'none',
					'top' : yDown,
					'opacity' : 0
				}
				
		$("#mediacenterBubble").css(cssObj);} );
		
		$("#brandassembler").hover(function() {
			yUp = $("#brandassembler").position().top - 2 + "px";
			yDown = $("#brandassembler").position().top + 50 + "px";
			left = $("#brandassembler").position().left + 140 + "px";
			$("#brandassemblerBubble").css("top" , yDown);
			$("#brandassemblerBubble").css("left" , left);
			$("#brandassemblerBubble").css("display", "block");
			$("#brandassemblerBubble").animate({ top : yUp, opacity : 1 }, 400);
			//console.log(yDown);

		},function() {var cssObj = {
					'display' : 'none',
					'top' : yDown,
					'opacity' : 0
				}
				
		$("#brandassemblerBubble").css(cssObj);} );
		
		$("#productservices").hover(function() {
			yUp = $("#productservices").position().top - 2 + "px";
			yDown = $("#productservices").position().top + 50 + "px";
			left = $("#productservices").position().left + 140 + "px";
			$("#productservicesBubble").css("top" , yDown);
			$("#productservicesBubble").css("left" , left);
			$("#productservicesBubble").css("display", "block");
			$("#productservicesBubble").animate({ top : yUp, opacity : 1 }, 400);
			//console.log(yDown);

		},function() {var cssObj = {
					'display' : 'none',
					'top' : yDown,
					'opacity' : 0
				}
				
		$("#productservicesBubble").css(cssObj);} );
				
	});