///////////////// регистрациона форма
$(document).ready(function() {
	$('#regbox').hide();
	$('#reg-toggle').click(function() {
	$('#regbox').toggle(400);
	return false;
	});
});



//////////// акордион меню цениш
jQuery().ready(function(){
	// simple accordion
	jQuery('#list1b').accordion({
		header: "h2", navigation: true,
		active:false,
		autoheight: false,
		alwaysOpen: false,
		navigation: true
	});
	$(function(){
	$('#list1b').accordion({ header: "h2", navigation: true });
 });
});

    
    
/////////////////// балони
$(document).ready(function() {
	$('.toolTip').hover(
		function() {
		this.tip = this.title;
		$(this).append(
			'<div class="toolTipWrapper">'
				+'<div class="toolTipMid">'
					+this.tip
				+'</div>'
			+'</div>'
		);
		this.title = "";
		this.width = $(this).width();
		$(this).find('.toolTipWrapper').css({left:this.width-50})
		$('.toolTipWrapper').fadeIn(500);
	},
	function() {
		$('.toolTipWrapper').fadeOut(100);
		$(this).children().remove();
			this.title = this.tip;
		}
	);
});

///////////////////////////////
