
jQuery(document).ready(function() {

jQuery('#marginal_left .container_text img').qtip(
{
  position: {
      corner: {
         target: 'bottomMiddle',
         tooltip: 'topMiddle'
      },
  adjust: { x: 0, y: 8 }
   }
}
);


/* jQuery('#twitter').bind('mouseover', function() {play_wm();}); */
/* jQuery('#twitter').bind('mouseout', function() {stop_wm();}); */
});

function play_wm()
{
	if (jQuery.support.leadingWhitespace)
	{
		elem = "<audio autoplay='autoplay' preload='preload' id='wmsound'><source src='/audio/wm2010_2.ogg' /><source src='/audio/wm2010_2.mp3' /></audio>";
		// elem = "<embed id='wmsound' style='visible:false;' width='1px' height='1px' flashvars='file=http://www.index.de/audio/wm2010.mp3&amp;autostart=true' wmode='transparent' allowfullscreen='false' allowscriptaccess='always' autostart='true' quality='high' src='http://www.index.de/video/mediaplayer.swf' type='application/x-shockwave-flash'>";
	}
	else
	{
		elem = "<embed id='wmsound' style='visible:false;' width='1px' height='1px' flashvars='file=http://www.index.de/audio/wm2010_2.mp3&amp;autostart=true' wmode='transparent' allowfullscreen='false' allowscriptaccess='always' autostart='true' quality='high' src='http://www.index.de/video/mediaplayer.swf' type='application/x-shockwave-flash'>";
	}
	jQuery('body').append(elem);
	
}

function stop_wm()
{
	jQuery('#wmsound').remove();

}