//jquery ui scripts only
$(document).ready(function() {
	$('#but').button();


               // Tell jQuery that our div is to be a dialog  
                 $('#getDirections').dialog({ 
				 position:[396,290],
				 autoOpen: false,
				 minWidth:800,
				 maxHeight:700,
				 height: 530,
				 title:'Get Directions to The Pretty Dress Company'
				
				});  
   
                 $('#but').click(function() {  
                     $('#getDirections').dialog('open'); 
					 return false;
 
                 }); 
				 
$('.butt').button();    
              
$('.accordion').liteAccordion(
{
	theme : 'dark',
	autoPlay : true,
    containerWidth : 700,
    containerHeight : 300,
    slideSpeed : 600,
    firstSlide : 2 }
);
});


