
Math.randomFromTo = function(from, to)
{
       return Math.floor(Math.random() * (to - from + 1) + from);
}
window.onload = function()
{
	getSymbolicImage();
}
function getSymbolicImage()
{
	$('#symbolicImage').attr("src", "images/symbolicImage_" + Math.randomFromTo(1,1) + ".jpg");
}
$(function()
		{
		var config = {
				over: function() {$("#accordianmo").children("ul").slideDown(800, function() {
					//$(this).children('ul').css('display', "block");
				}); },
				timeout: 500,
				out: function() {
					if($(this).children("ul").hasClass('tabOpen') != true)
					{
						$("#accordianmo").children("ul").slideUp(800, function() {
							//$(this).css('display', "none");
						});
					}
				} 
		}
		
		$("#accordianmo").hoverIntent(config);

		});

