// JavaScript Document for Alpari global elements.

$(document).ready(function() {
	
	$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })});
	
	// this initialises the scrollpane on the page.
	$('#scrollPane').jScrollPane({showArrows:true});
	
	$('.tabContent').css('display', 'none');
	$('.tabContent').eq(0).css('display', 'block');
	
	$('.tabContent').each(function() {
		$('.containerModuleContent', this).each(function(i) {
				if (i == 0) {
					$(this).css('display', 'block');
				} else {
					$(this).css('display', 'none');
				}
		});
	});
	
});