$(document).ready(function()
{  
    $('a.lightbox').lightBox();
    $('#nav').droppy();

	if ($('#left_imf').size() != 0)
	{
        var cook = document.cookie.match(/img=(\d{1});?/);
        if (cook == null)
			cook = 1;
		else
			cook = cook[1];

		if (cook == 3) cook = 0;

		cook++;

		$('#left_imf').addClass('left_imf'+cook);
		$('#right_imf').addClass('right_imf'+cook);

        document.cookie = 'img='+cook;
	}

	$('#logo').click( function() { window.open('http://www.kaztranszhol.kz/', '_self', '') } );

    $('div.img_btn a').hover(
		function()
		{
           	$(this).find('img').animate({width: '128px',height: '128px',top: 0, left: 0}, 300);
		},
           function()
		{
               $(this).find('img').animate({width: '80px',height: '80px',top: 24, left: 24}, 300);
		}
	);
});
