$(function() {


});

$(document).ready(function() {

	$(".page-nav .p-btn a").hover(
		function () {
			$(this).parent().addClass("bth-hover")
		},
		function () {
			$(this).parent().removeClass("bth-hover")
		}
	);

	$(".breadcrumbs input[type='submit']").hover(
		function () {
			$(this).addClass("bth-hover")
		},
		function () {
			$(this).removeClass("bth-hover")
		}
	);

	$(".gallery").addClass("filtrreload");
	
	/*
	$(".main-gallery .gallery_view").jCarouselLite({
		btnNext: ".gallery .next",
		btnPrev: ".gallery .prev",
		visible: 5
	});

	$(".model-gallery .gallery_view").jCarouselLite({
		btnNext: ".gallery .next",
		btnPrev: ".gallery .prev",
		visible: 3
	});
	*/

	$('.main-gallery ul').hoverscroll({
		width:    570,
		height:   118,
		arrows:   true
	});

	$('.model-gallery ul').hoverscroll({
		width:    930,
		height:   253,
		arrows:   true
	});

	$(".big-foto .big-foto_wrap").jCarouselLite({
		btnNext: ".big-foto .fn",
		btnPrev: ".big-foto .fp",
		visible: 1,
		btnGo:
		[".morefoto-list .foto-1", ".morefoto-list .foto-2", ".morefoto-list .foto-3", ".morefoto-list .foto-4" ]
	});

	$(".available-info_list li").click(function () {
    	$(".available-info_list .active").removeClass("active");
		$(this).addClass("active")
    });


	$(".nav-main .menu-link .active-wrap a").click(function () {
    	$(".nav-main .menu-link").removeClass("active");
		$(this).parents("li").addClass("active");
		return false;
    });

	$(".model-change").click(function () {
		$(this).toggleClass("model-change_active")
    });



  $(".modal-link").nyroModal({width: '400'});
});