﻿
$(document).ready(function() {

$(".content").css({"min-height":$(window).height()-191-114-13});
$("#main_map").css({"height":$(window).height()-191-114-13-50});
$(".cam_gallery .middle .center-td").hover(function(){
	$(this).find(".webcam_option").animate({bottom:"0px"}, 500);
}, function() {
	$(this).find(".webcam_option").animate({bottom:"-24px"}, 500);
}
);

$(".start_translation").mousedown(function(){
		$(this).addClass("clicked");
    }).mouseup(function(){
		$(this).removeClass("clicked");
    });
$(".open_hidden").click(
	function() {
		$(this).hide().parent().find(".hidden_text").show().css({"display":"inline"});
		$(this).parent().find(".close_hidden").show().css({"display":"block"});
	}
);
$(".close_hidden").click(
	function() {
		$(this).hide().parent().find(".hidden_text").hide();
		$(this).parent().find(".open_hidden").show().css({"display":"inline"});
	}
);


$(window).resize( function() {
	$(".content").css({"min-height":$(window).height()-191-114-13});
	$("#main_map").css({"height":$(window).height()-191-114-13-50});
});

});
