//comanda serviciu
$(document).ready(function() {
	$('#comandaServiciuShowForm').toggle(function() {
		$('#comandaServiciuWrapper').slideDown('300', function() {
			// Animation complete.
		});
	}, function() {
		$('#comandaServiciuWrapper').slideUp('300', function() {
			// Animation complete.
		});
	});

	var url = location.href;

	if(url.match("visible")){
		$("#comandaServiciuWrapper").css({ 'display' : 'block'});
	}
});

//lightbox images
$(document).ready(function() {
	$(function() {
		$('a.lightbox').each(
			function(index){
				$imgSrc = $(this).children('img').attr("src").replace(/ /gi, '%20');
				$imgTitle = $(this).children('img').attr("title");
				$(this).attr('href', $imgSrc);
				$(this).attr('title', $imgTitle);
			}
		);
		$('a.lightbox').lightBox({
				overlayBgColor: '#000',
				overlayOpacity: 0.6,
				imageLoading:	'http://' + location.host + '/js/jquery/lightbox_0_5/images/lightbox-ico-loading.gif',
				imageBtnClose:	'http://' + location.host + '/js/jquery/lightbox_0_5/images/lightbox-btn-close.gif',
				imageBtnPrev:	'http://' + location.host + '/js/jquery/lightbox_0_5/images/lightbox-btn-prev.gif',
				imageBtnNext:	'http://' + location.host + '/js/jquery/lightbox_0_5/images/lightbox-btn-next.gif',
				containerResizeSpeed: 350,
				txtImage: 'Imaginea',
				txtOf: 'din'				
		});
	});
});