$(document).ready(function() { 	
			
	$("#ajax_player_top").scrollable({ circular: true, mousewheel: true , speed :700}).autoscroll({ autoplay: true, interval: 7000 }).navigator({ navi: ".pagination #numbering" , naviItem: 'a', activeClass: 'active', history: false});
	
	$('#vmdiv').hide();
	$('#avsdiv').hide();
	$('#psdiv').hide();
	$('#trdiv').hide();
	
	$('.virtualmeetings').mouseover(function(e) {
		$('#vmdiv').hide();
		$('#avsdiv').hide();
		$('#psdiv').hide();
		$('#trdiv').hide();
		var target = '#'+$(this).attr('id')+'div';
		$('#osdiv').hide();
		$(target).show();
	});
	
	$('.virtualmeetings').mouseout(function(e) {
	$('#vmdiv').hide();
	$('#avsdiv').hide();
	$('#psdiv').hide();
	$('#trdiv').hide();
	$('#osdiv').show();
	});
});

