	$(document).ready(function(){
		$('.northamerica, .southamerica, .europe, .africa, .asia, .australasia').CreateBubblePopup({
			position : 'top',
            align: 'center',
			innerHtml: '<ul><li>Breitling Oil & Gas</li><li>Borco</li><li>Lime</li><li>Siemens</li><li>Camaran Compressor</li></ul>',
			innerHtmlStyle: {
				color:'#000',
				background: '#fff'
			},
			themeName: 	'azure',
			themePath: 	'/workspace/js/map/jquerybubblepopup-theme'
		});
		
		$(".northamerica").SetBubblePopupInnerHtml("<ul><li>Breitling Oil & Gas</li><li>Borco</li><li>Lime</li><li>Siemens</li><li>Camaran Compressor</li></ul>");
		$(".southamerica").SetBubblePopupInnerHtml("<ul><li>Sranska</li><li>Sital</li><li>SAB Columbia</li><li>Nova America</li><li>Termo Technika</li></ul>");
		$(".europe").SetBubblePopupInnerHtml("<ul><li>P&G</li><li>Unilever</li><li>ThyssenKrupp</li><li>Kongsberg</li><li>Tupras</li></ul>");
		$(".africa").SetBubblePopupInnerHtml("<ul><li>Eskom</li><li>SAB</li><li>Highveld</li><li>Zambeef</li><li>Cement Enfidha</li></ul>");
		$(".asia").SetBubblePopupInnerHtml("<ul><li>Leighton</li><li>Punj Lloyd</li><li>Larsen & Toubro</li><li>Arabtec</li><li>John Holland</li></ul>");
		$(".australasia").SetBubblePopupInnerHtml("<ul><li>Go Offshore</li><li>Kalgoorlie</li><li>Byrnecut</li><li>Coleman Rail</li><li>John Holland Aviation</li><li>Clough</li></ul>");
	
		$(".northamerica, .southamerica, .europe, .africa, .asia, .australasia").hover(function(){
			$('#worldMapOverlay').addClass($(this).attr("class"));
		}, function(){
			$('#worldMapOverlay').removeClass($(this).attr("class"));
		});
	});

            /*$('.northamerica').CreateBubblePopup({
                    selectable: true,

                    position : 'top',
                    align	 : 'center',

                    innerHtml: '<ul><li>Breitling Oil & Gas</li><li>Borco</li><li>Lime</li><li>Siemens</li><li>Camaran Compressor</li></ul>',

                    innerHtmlStyle: {
                                        color:'#000',
                                        background: '#fff'
                                    },

                    themeName: 	'azure',
                    themePath: 	'/workspace/js/map/jquerybubblepopup-theme',

                     afterShown: function(){
                         $('#worldMapOverlay').addClass('northamerica');
                     },
                     afterHidden: function(){
                         $('#worldMapOverlay').removeClass('northamerica');
                     }
            });

            $('.southamerica').CreateBubblePopup({
                    selectable: true,

                    position : 'top',
                    align	 : 'center',

                    innerHtml: '<ul><li>Sranska</li><li>Sital</li><li>SAB Columbia</li><li>Nova America</li><li>Termo Technika</li></ul>',

                    innerHtmlStyle: {
                                        color:'#000',
                                        background: '#fff'
                                    },

                    themeName: 	'azure',
                    themePath: 	'/workspace/js/map/jquerybubblepopup-theme',

                     afterShown: function(){
                         $('#worldMapOverlay').addClass('southamerica');
                     },
                     afterHidden: function(){
                         $('#worldMapOverlay').removeClass('southamerica');
                     }
            });

            $('.europe').CreateBubblePopup({
                    selectable: true,

                    position : 'top',
                    align	 : 'center',

                    innerHtml: '<ul><li>P&G</li><li>Unilever</li><li>ThyssenKrupp</li><li>Kongsberg</li><li>Tupras</li></ul>',

                    innerHtmlStyle: {
                                        color:'#000',
                                        background: '#fff'
                                    },

                    themeName: 	'azure',
                    themePath: 	'/workspace/js/map/jquerybubblepopup-theme',

                     afterShown: function(){
                         $('#worldMapOverlay').addClass('europe');
                     },
                     afterHidden: function(){
                         $('#worldMapOverlay').removeClass('europe');
                     }
            });

            $('.africa').CreateBubblePopup({
                    selectable: true,

                    position : 'top',
                    align	 : 'center',

                    innerHtml: '<ul><li>Eskom</li><li>SAB</li><li>Highveld</li><li>Zambeef</li><li>Cement Enfidha</li></ul>',

                    innerHtmlStyle: {
                                        color:'#000',
                                        background: '#fff'
                                    },

                    themeName: 	'azure',
                    themePath: 	'/workspace/js/map/jquerybubblepopup-theme',

                     afterShown: function(){
                         $('#worldMapOverlay').addClass('africa');
                     },
                     afterHidden: function(){
                         $('#worldMapOverlay').removeClass('africa');
                     }
            });

            $('.asia').CreateBubblePopup({
                    selectable: true,

                    position : 'top',
                    align	 : 'center',

                    innerHtml: '<ul><li>Leighton</li><li>Punj Lloyd</li><li>Larsen & Toubro</li><li>Arabtec</li><li>John Holland</li></ul>',

                    innerHtmlStyle: {
                                        color:'#000',
                                        background: '#fff'
                                    },


                    themeName: 	'azure',
                    themePath: 	'/workspace/js/map/jquerybubblepopup-theme',

                     afterShown: function(){
                         $('#worldMapOverlay').addClass('asia');
                     },
                     afterHidden: function(){
                         $('#worldMapOverlay').removeClass('asia');
                     }
            });

            $('.australasia').CreateBubblePopup({
                    selectable: true,

                    position : 'top',
                    align	 : 'center',

                    innerHtml: '<ul><li>Go Offshore</li><li>Kalgoorlie</li><li>Byrnecut</li><li>Coleman Rail</li><li>John Holland Aviation</li><li>Clough</li></ul>',

                    innerHtmlStyle: {
                                        color:'#000',
                                        background: '#fff'
                                    },

                    themeName: 	'azure',
                    themePath: 	'/workspace/js/map/jquerybubblepopup-theme',

                     afterShown: function(){
                         $('#worldMapOverlay').addClass('australasia');
                     },
                     afterHidden: function(){
                         $('#worldMapOverlay').removeClass('australasia');
                     }
            });
*/
