$( document ).ready(function()
{
  SexyLightbox.initialize( {
    imagesdir: strBaseUrl + 'assets/img/sexyimages',
    color: 'white'
  } );

  $( '#time_start' ).datepicker({
	  dateFormat: 'dd-mm-yy'
  });
  $( '#time_end' ).datepicker({
	  dateFormat: 'dd-mm-yy'
  });

  $( 'form' ).validationEngine({
    //promptPosition: "topLeft", // OPENNING BOX POSITION, IMPLEMENTED: topLeft, topRight, bottomLeft,  centerRight, bottomRight
		success :  false,
    //inlineValidation: false,
		failure : function() {}
	});
} );

function changePhoto( car_id, photo_id )
{
  $( '#car_photo_a_' + car_id).attr( 'href', strBaseUrl + 'assets/cars/' + car_id + '/' + photo_id + '.jpg' )
  $( '#car_photo_img_' + car_id).fadeOut( 'fast', function()
  {
    $( '#car_photo_img_' + car_id).attr( 'src', strBaseUrl + 'assets/cars/' + car_id + '/' + photo_id + '.jpg.thumb.jpg' ).load( function()
    {
      $( '#car_photo_img_' + car_id).fadeIn( 'fast' );
    } );
  } );
}
