$(document).ready(function(){

		// add animation for each hotspot
		function blink(){
			$(".hotspot").animate({ opacity: 1.0 }, 300 ).delay(400).animate({ opacity: 1.0 }, 300, function(){ blink(); } );
		};blink();

		// create bubble popups
		$('.hotspot').CreateBubblePopup({		selectable: true,
												position : 'bottom',
												


												innerHtmlStyle: {
																	color:'#FFFFFF', 
																	'text-align':'center'
																},
												
												themeName: 	'all-dark-grey',
												themePath: 	'/Templates/images/jquerybubblepopup-theme'

										});

		
		$('#hotspot1').SetBubblePopupInnerHtml('<a href="http://www.tiff.net/socialmedia/">Visit our Social Media page</a>');
		
		
});

