//......1|0.......2|0.......3|0.......4|0.......5|0.......6|0.......7|0.......8|0.......9|0........
jQuery(document).ready(function() {
	// Fix hidden sub-menu problem with Opera
	$('.sub-menu').css({display: 'none'});
	
	// Add hover event to expandable navigation button
	$('.expandable').parent().hoverIntent(
		function() {
			var position = $(this).offset();
			
			$(this).find('.sub-menu').css('top', (position.top - 1) + 'px');
			$(this).find('.expandable').css('background', 'url(gif/expand-back-o.gif) no-repeat');
			$(this).find('.expandable').css('color', '#000000');
			$(this).find('.sub-menu').fadeIn();
		},
		function() {
			var position = $(this).offset();
			
			$(this).find('.sub-menu').css('top', (position.top - 1) + 'px');
			$(this).find('.expandable').css('background', 'url(gif/expand-back-u.gif) no-repeat');
			$(this).find('.expandable').css('color', '#FFFFFF');
			$(this).find('.sub-menu').hide();
		}
	);
});
//......1|0.......2|0.......3|0.......4|0.......5|0.......6|0.......7|0.......8|0.......9|0........
