/*
	javascript for home page.

	menu.js v1.0
	create on 2011-09-28 by Oscar Woo

*/

$(document).ready(function() {
	$("#products_link").click(function(){
		$(".apps_folder").stop();
		if($(".apps_folder").height() < 128 ){
			$(".apps_folder").animate( { height: '128px' }, 300);
		}else{
			$(".apps_folder").animate( { height: '0px' }, 300, function(){$(this).hide();});
		}
	});
	
});
