/** Show window with Related Info for contextual version
$(document).ready(function() {

$('#related_content').hide();

$('#contextbubble').toggle(function(){
			
			$("#related_content").fadeIn();
			$('#contextmaterial') .html(" Contextual Material - Hide");
			document.getElementById('xyz').style.background='#eee';
			document.getElementById('abc').style.background='#ccc';
			
			},
    function () {
            $("#related_content").fadeOut();
			$('#contextmaterial') .html(" Contextual Material - Show");
			
});
});
**/

/** Contextual - 5 May MWDiary **/
$(document).ready(function() {

$('#contextbubble').click(function(){
			$("#related_content").show();
});

});

/** Contextual - 5 May MWDiary **/
$(document).ready(function() {

$('#contextclose').click(function(){
			$("#related_content").hide();
});

});


$(document).ready(function() {
	$('#bubble').jqDrag();
	
	$('#ex2b')
		/*.css('opacity',1.0)*/
		.jqDrag();
});

$(document).ready(function() {
	$('#bubbleTS').jqDrag();
	
	$('#ex2b')
		/*.css('opacity',1.0)*/
		.jqDrag();
});
