$(window).load(function() {
	$('#navigation_menu > li').each(function() {
		var section = $(this).find('a');
		var link = section.attr('href');
		var section_title = section.find('span > b').html();
		$(this).find('div').prepend('<h4 class="active_header"><a href="' + link + '"><span>' + section_title + '</span></a></h4>');
	});
	
	$('#navigation_menu > li').hover(function() {
		//mouseover
		var height = $(this).attr('rel');
		$(this).children('div').css({"left":"0","height":"0"}).animate({height:height},300, function() {
			// $('<div id="menu_darkener"></div>').appendTo('body');
			var root_list = $(this).parent('li');
			if (root_list.attr('id') === 'products') {
				//$('<a class="arrow prev">&nbsp;</a>').appendTo(root_list).hide().fadeIn();
				//$('<a class="arrow next">&nbsp;</a>').appendTo(root_list).hide().fadeIn();
			}
		});
	}, function() {
		//mouseout
		//$(this).find('.prev').remove();
		//$(this).find('.next').remove();
		$(this).children('div').css({"left":"0"}).animate({height:'0'},300, function() {
			$(this).css({"left":"-9000px"});//,"overflow":"hidden"
			// $('#menu_darkener').remove();
		});
	});
		
	$('#product_menu_container').scrollable({
		mousewheel:true,
		items:'.items'
	});
	
	$('#product_menu_container').css({height:'300px'});
	
	// $('.next').live('click', function() {
	// 	var api = $("#product_menu_container").data("scrollable");
	// 	api.next(300);
	// 	return false;
	// });
	// 
	// $('.prev').live('click', function() {
	// 	var api = $("#product_menu_container").data("scrollable");
	// 	api.prev(300);
	// 	return false;
	// });
	
	$('#product_menu_container span.unit img').each(function() {
		var width = $(this).width();
		var height = $(this).height();
		$(this).css({'position':'absolute','left':'50%','margin-left':'-' + ((width/2)-10) + 'px','top':'50%','margin-top':'-' + height/2 + 'px','height':height*.8 + 'px'});
	});
});
