// GOODFELLA'Z PIZZERIA JAVASCRIPT-------------------------------

//----------Lightbox------------------------------------

	$(document).ready(function(){
	$(".promo").fancybox();
	});

//----------Tabs---------------------------------------------------------

	$(function() {
		$('#tabs').tabs();
		});
	$(document).ready(function() {

//---------Buttons

    $("button").button();
	});
	$(function() {	

//----------Dialog Box

	$( "#dialog" ).dialog({	
		autoOpen: false, 
		modal:true,
		height: 470,
		width: 425
			
	});
    $( "#opener" ).click(function() {	
		$( "#dialog" ).dialog( "open" );
			return false;
	});
	});

//---------------------Slider-------------------------------------

	jQuery(function($) {

		var open = false;

		$('#footerSlideButton').click(function () {

			if(open === false) {

				$('#footerSlideContent').animate({ height: '200px' });

				$(this).css('backgroundPosition', 'bottom left');

				open = true;

			} else {

				$('#footerSlideContent').animate({ height: '0px' });

				$(this).css('backgroundPosition', 'top left');

				open = false;

			}

		});		

	});

