$(document).ready(function(){ 

  // hide the element initially then fade in
  $('div.photos p').css({display:"none"}).fadeIn(2000);
  $('#random-photos').css({display:"block"});

  $('#random-photos').click(function() {

    $('div.photos p').fadeOut(1500, function() {
      $('div.photos p').remove();
	  $.get('ajax.php', {photo: Math.random()}, function(data) {
	    $('#random-photos').after(data);
		$('div.photos p').css({display:"none"}).fadeIn(2000);
	  });
    });
  });

//  $('div.photos p').fadeOut(1000, function() {
//    $.get('ajax.php', {photo: 'y'}, function(data) {
//	  $('div.photos p').append(data).fadeIn(1000);
//	});
//  });


  if (!($('#toggleShipping').attr("checked")))
  {
    $('#shippingInfo').css({display: 'none'});
  }

  $('#toggleShipping').click(function() {
    $('#shippingInfo').slideToggle('slow');
  });



  $('#images div a').click(function() {
    var $image = $(this);

    preload_image = new Image();
    preload_image.src = $image.attr('href');

    $('#listingPhoto').fadeOut(1000, function() {
      $('#listingPhoto').attr({'src': $image.attr('href')});
      $('#listingPhoto').fadeIn(1000);
	});

    $('#caption').fadeOut(1000, function() {
      $('#caption').html($image.attr('title'));
	  $('#caption').fadeIn(1000);
	});

	return false;
  });
}); 
