jQuery.noConflict();


jQuery(document).ready(function() {

	jQuery(function() {
    jQuery(".carousel").jCarouselLite({
        btnNext: ".carousel-next-btn",
        btnPrev: ".carousel-prev-btn",
        visible: 5

				    });
				});



jQuery('.projects_ru, .projects_ua, .projects_en,').hover(
        function() {
            jQuery(this).find('.brdr').slideDown('slow');
        },
        function() {
            jQuery(this).find('.brdr').slideUp('slow');
        }
    );



    jQuery("#tabs").tabs({ fx: { opacity: 'toggle' } });

	jQuery(function() {
        jQuery('#obj-graf a').lightBox();
    });

    jQuery(function() {
        jQuery('a.google').lightBox();
    });

    jQuery(function() {
        jQuery('a.map').lightBox();
    });

    jQuery("#obj-docs a[href$='pdf']").addClass("pdf");
	jQuery("#obj-docs a[href$='zip']").addClass("zip");
	jQuery("#obj-docs a[href$='jpg']").addClass("jpg");
	jQuery("#obj-docs a[href$='PDF']").addClass("pdf");
	jQuery("#obj-docs a[href$='ZIP']").addClass("zip");
	jQuery("#obj-docs a[href$='JPG']").addClass("jpg");


	var c = 1;
	jQuery("#geo .reg").each(function(){
		jQuery(this).find(".object").each(function(){
			jQuery(this).css({
			'position' : 'absolute',
			'top' : (-14 * c )
			});
			c += 1;
		})
		c = 1;
	})






});


