$(
	function()
	{
		var comboboxSettings = {animationSpeed: 100};
		setupCombobox();
	});
		
	// create a jquery combobx and set the Css class styles
	function setupCombobox()
	{
	_categorieCombobox = $('.combo').combobox(
		{
			comboboxContainerClass: "comboboxContainer",
			comboboxValueContentContainerClass: "comboboxValueContainer",
			comboboxValueContentClass: "comboboxValueContent",
			comboboxDropDownClass: "comboboxDropDownContainer",
			comboboxDropDownButtonClass: "comboboxDropDownButton",
			comboboxDropDownItemClass: "comboboxItem",
			comboboxDropDownItemHoverClass: "comboboxItemHover",
			comboboxDropDownGroupItemHeaderClass: "comboboxGroupItemHeader",
			comboboxDropDownGroupItemContainerClass: "comboboxGroupItemContainer"
		},
		{
			animationType: "fade",
			width: 170
		});
	
	
}
$(document).ready( function(){
	$('a.adminExpander').click(function(){
		$('.adminCurrent').removeClass('adminCurrent');
		$(this).parent().parent().addClass('adminCurrent');
		$('.additionalContent').slideUp();
		$(this).parent().siblings('.additionalContent').slideDown();
		return false;
	});
	
	$("#comanda").click(function () {
      $("#cerere").slideDown(1000,function(){
       // $("#comanda").css("visibility", "hidden");
      });
    });					
});

			
$(function() {$('#gallery a').lightBox({imageLoading: '/media/lightbox/loading.gif',imageBtnClose: '/media/lightbox/close.gif',imageBtnPrev: '/media/lightbox/prev.gif',imageBtnNext: '/media/lightbox/next.gif'});});
/*var showid='';
function show(id) {if (showid!=id) {if (document.getElementById(id)!=null) document.getElementById(id).style.display='block';showid=id;}}
function hide(id) {if (showid!=id) if (document.getElementById(id)!=null) document.getElementById(id).style.display='none';}*/