
// JQuery Functions
$(document).ready(function() {

	$('#content a').hover( function() { $('li.menulabel ul').css({'display' : 'none'}); }, function() {} );
	$('#menutoprow li.pagelabel').hover( function() { $('li.menulabel ul').css({'display' : 'none'}); }, function() {} );
	$('.menulabel').hover( function() { $('li.menulabel ul').css({'display' : 'none'}); $(this).children().css({'display' : 'block'}); }, function() {} );

	$(function() { $("#scroller").scrollable({ size: 1, interval: 1, speed: 15000, easing: "linear" }); });  
	
	$('#scroller').hover( function() { $('li.menulabel ul').css({'display' : 'none'}); }, function() {} );
	$('#scroller').click( function() { window.open("http://www.datadisplayuk.com");  });

});
