$(document).ready(function() {
	$("div.footBot li:last-child").addClass("last");
	$("li,div.openingLinksBlock p.head,div.linksBlock p").hover(function () {$(this).addClass("hover");}, function () {$(this).removeClass("hover")});

	$("div.openingLinksBlock p,div.botmenu ul li").click( function() {
		$(this).parent().find("div.innerBlock").slideToggle();
		$(this).parent().parent().toggleClass("opened");

	})
})
