$(document).ready(function() {	
	$(".fancybox").fancybox();

	if ($("form.reparationStatus").length > 0) {
        $("form.reparationStatus").bind("submit", Main.popupWorkshopStatus);
        $("form.reparationStatus input.text:first").focus();
    }

	if ($("div.slideShow").length > 0) {
        if ($('div.slideShow img.active').length == 0) {
            $('div.slideShow img').eq(Math.floor(Math.random() * $('div.slideShow img').length)).addClass("active");
        }

        Main.slideShowActive = $('div.slideShow img.active');
        Main.initSlideShow();
    }

	$("a.popupUsedCars").bind("click", Main.popupUsedCars);
	
	$("div.slideShow img").bind("click", Main.slideShowToggle);
});
