// interactive page links
$(document).ready(function(){
  $('#citiesStates').hide('slow');
  
});

$(function() {
    
	$('.more a.newsletter').click(function(event){
	  // hide more info link
	  $('.more').hide();
	  // show more info
	  $('.mark').show('slow');
	  // don't follow the link
	  event.preventDefault();
	});
	$('.mark a.close').click(function(event){
	  $('.mark').hide('slow');
	  $('.more').show('slow');
	  event.preventDefault();
	});
	$('.more a.cities').click(function(event){
	  $('div#citiesStates').show('slow');
	  event.preventDefault();
	});
	$('.prices a.close').click(function(event){
	  $('div#citiesStates').hide('slow');
	  event.preventDefault();
	});
	
	if (window.location == 'http://www.wholesaleflowersandsupplies.com/#thankyou') {
	  $('div.subscribe').hide();
	  $('div.thankyou').show('slow');
	}
	if (window.location == 'http://www.wholesaleflowersandsupplies.com/schoolrewardsprogram.html#thankyou'){
	  $('div.thankyou').show('slow');	
	}
	
  });

$(function(){
  // try the jquery for AC and catch it so we don't alarm our visitors
  try { 
      $('#gallery a').lightBox();
  } catch(e){
  }

    });