/*****************************\
* Autor:  PAV                 *
* e-mail: proalex85@gmail.com *
\*****************************/

jQuery.fn.NavPanel = function() {
	var show = false;
	jQuery('div#navpanel-btn').bind('click', function() {
		var container1 = jQuery('div#n_inner');
		var container2 = jQuery('div#navpanel');
		if (!show) {
			container1.animate({"height": "+=158px"});
			container2.animate({"left": "-=607px"});
			container2.animate({"top": "+=154px"});
			show = true;
		} else {
			container1.animate({"height": "-=158px"});
			container2.animate({"top": "-=154px"});
			container2.animate({"left": "+=607px"});
			show = false;
		}
	});
};