var current_slide = 1;

function carousel_switch_controls(index) {
	$('[slide="'+current_slide+'"]').attr("src", current_path+"/css/images/bullet_blue.png");
	current_slide = index;
	$('[slide="'+current_slide+'"]').attr("src", current_path+"/css/images/bullet_white.png");
}

function carousel_initCallback(carousel) {
    $('#carousel-controls img').bind('click', function() {
		carousel_switch_controls($.jcarousel.intval($(this).attr("slide")));
        carousel.scroll(current_slide);
        return false;
    });
};

function carousel_trigger(carousel, state) {
	carousel_switch_controls(carousel.first);
}

function getText(text) {
	var re = new RegExp("<!--:" + lang + "-->(.*?)<!--:-->");
	return text.match(re)[1];
}

$(document).ready(function() {
	$("#carousel").jcarousel({
		auto: 3,
		scroll: 1,
		visible: 1,
		initCallback: carousel_initCallback,
		itemLoadCallback: carousel_trigger,
		buttonNextHTML: null,
		buttonPrevHTML: null
	});
	$(".wpcf7-form-control").attr("placeholder", function(ind, val) {
		if (this.name=="your-name") return getText("<!--:ru-->Ваше имя<!--:--><!--:en-->Your name<!--:-->");
		if (this.name=="your-email") return getText("<!--:ru-->Ваше E-Mail<!--:--><!--:en-->Your E-Mail<!--:-->");
		if (this.name=="your-subject") return getText("<!--:ru-->Тема<!--:--><!--:en-->Subject<!--:-->");
		if (this.name=="your-company") return getText("<!--:ru-->Название компании<!--:--><!--:en-->Company name<!--:-->");
		if (this.name=="your-year") return getText("<!--:ru-->Год основания<!--:--><!--:en-->Foundation year<!--:-->");
		if (this.name=="your-phone") return getText("<!--:ru-->Контактный телефон<!--:--><!--:en-->Phone number<!--:-->");
		if (this.name=="your-area") return getText("<!--:ru-->Направление деятельности<!--:--><!--:en-->Area<!--:-->");
		if (this.name=="your-transport") return getText("<!--:ru-->Наличие собственного транспорта<!--:--><!--:en-->Own transport<!--:-->");
		if (this.name=="your-code") return getText("<!--:ru-->Код ЕГРПОУ<!--:--><!--:en-->Код ЕГРПОУ<!--:-->");
		if (this.name=="your-address") return getText("<!--:ru-->Адрес<!--:--><!--:en-->Address<!--:-->");
		if (this.name=="your-position") return getText("<!--:ru-->Должность<!--:--><!--:en-->Position<!--:-->");
		if (this.name=="your-products") return getText("<!--:ru-->Продукцию каких предприятий вы представляете<!--:--><!--:en-->What products do you present?<!--:-->");
		if (this.name=="your-volume") return getText("<!--:ru-->Планируемые объемы закупок<!--:--><!--:en-->Planned sales<!--:-->");
		return undefined;
	});
	$.Placeholder.init();
});
