
(function($){

$(document).ready(function(){
	// top nav
	$('#top-nav')
		// reset css & hide all shop contents.
		.find('.shop')
			.css({
				'position': 'absolute',
				'top': 0,
				'right': 0,
				'background-image': 'none'
			})
			.hide().end()
		// set nav button behavior.
		.find('.default li')
			.css('zIndex', 1000)
			.hover(
				// mouseover
				function(){
					var index = $(this).parent().children('li').index(this);
					$('#top-nav')
						.find('.default h2').hide().end()
						.find('.shop').eq(index).fadeIn();
					$(this).css('zIndex', 1100);
				},
				// mouseout
				function(){
					$('#top-nav')
						.find('.shop:visible').fadeOut('fast').end()
						.find('.default h2').fadeIn('fast');
					$(this).css('zIndex', 1000);
				}
			);
});

})(jQuery);
