/**
 * Application Scripts
 * Any Javascripts that run globally on every page of the website are go here.
 *
 * -----------------------------------------------------------
 *
 * @author			Barry Malcolm Harley
 * @version		1.0.0
 * @copyright		Copyright (c) 2011 ZootAlore! Creative
 *
 */

$(function() {
	// setup the custom scrollbar for Twitter feed
	if ($('#twitter').length) $('#twitter').jScrollPane();
	
	// since the css hover on the more menu doesn't want to work in IOS...
	if (navigator.userAgent.match(/like Mac OS X/i))
	{
		$('#more').click(function() { 
			if (!$('#more_menu').is(':visible'))
				$('#more').css('backgroundColor', '#15a0f2');
			else if (!$(this).hasClass('selected'))
				$('#more').css('backgroundColor', '#d2d2d2');
			$('#more_menu').toggle(); 
		});
	}
});

