/*==============================================================================
(C)2009 Yezhoff Oleg (yezhoff@ya.ru)
==============================================================================*/


$(window).load(function () {

        $(".main_photo_1").animate({
        top: "109px", left: "421px", height:"203px", width:"253px"
        }, 500, function(){

       $(".main_photo_3").animate({
                 top: "162px", left: "701px", height:"169px", width:"194px"

        }, 500, function(){

             $(".main_photo_2").animate({
                       top: "208px", left: "628px", height:"121px", width:"153px"

        }, 500);

        });


        });






	}
);

/*==============================================================================
ready
==============================================================================*/
$(document).ready(function()
	{

		/*==============================================================================
  hide / show div
  ==============================================================================*/
		$('.show').click(function()
			{

				$(this).next('.hidden').toggle();
                $(this).toggleClass('a-show');
				return false;
			}
		);
		/*==============================================================================
  ********************************************************************************
  ==============================================================================*/
		//end of ready
	}
);

