$(document).ready(function() { 
	$('#divanMap').qtip({
	   //content: '<img src="http://maps.google.com/maps/api/staticmap?center=50.442256,30.521264&zoom=15&markers=size:mid|color:blue|label:D|37.386052,-122.083851|50.442147,30.521178&path=color:0x0000FF80|weight:5|37.39566,-122.02549|37.39362,-122.00918|37.38052,-122.01159|37.38503,-122.03064|37.39566,-122.02549&path=color:0x0000FF80|weight:5|37.38966,-122.01708&size=240x240&sensor=false">',
		content: '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?msa=0&amp;msid=208892840923523105250.0004a6f4d2feb8ab6a88d&amp;hl=en&amp;ie=UTF8&amp;ll=50.4501,30.5234&amp;spn=0,0&amp;iwloc=0004a6f4d9363e2c799f2&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?msa=0&amp;msid=208892840923523105250.0004a6f4d2feb8ab6a88d&amp;hl=en&amp;ie=UTF8&amp;ll=50.4501,30.5234&amp;spn=0,0&amp;iwloc=0004a6f4d9363e2c799f2&amp;source=embed" style="color:#0000FF;text-align:left">"Divan" art-club</a> in a larger map</small>',
	   show: 'mouseover',
	   hide: 'unfocus'  , 
		position: {
			corner: {
			 target: 'bottomMiddle',
			 tooltip: 'topMiddle'
		  }
		},
		style: {
			name: 'dark',
			tip: 'topMiddle',
			width: '200',
			height: '200'
		}
		
	});
	
        $('#octoberTour ul li').each(function(index) {
//            var mycontent = ;
            $('#' + this.id + ' span').qtip({
               content: $("#" + this.id + "_content"),
               
               show: { solo: true },
               hide: 'unfocus'  , 
                    position: {
                      corner: {
                         target: 'rightMiddle',
                         tooltip: 'leftMiddle'
                      }
                    },
                    style: {
                        name: 'dark',
                        tip: 'leftMiddle',
                        width: '200',
                        height: '200'
                    }

            });
        })
	
} )


