

$(function() {
  $("img").hover(function() {
    $(this).css("border-color", "#f26322");
  }, function() {
    $(this).css("border-color", "#888");
  });
});

$(function() {
  $("#menu img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-hov."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-hov.").join("."));
  });
});

$(function() {
  $(".navLink").hover(function() {
    $(this).css("background-color", "#f26322");
  }, function() {
    $(this).css("background-color", "#000");
  });
});

$(function() {
  $("#addComment").hover(function() {
    $(this).css("background-color", "#f26322");
  }, function() {
    $(this).css("background-color", "#000");
  });
});

$(function($) {
	//temp = ((document.body.clientWidth - 775) / 2) + 120;
	//$('#menu').css("left",temp);
		
		$('#left').crossSlide({
			sleep: 5,
			fade: 3
		}, [
			{ src: 'img/07.jpg' },
			{ src: 'img/09.jpg' },
			{ src: 'img/02.jpg' },
			{ src: 'img/04.jpg' },
			{ src: 'img/05.jpg' },
			{ src: 'img/08.jpg' }
		]);
});

function place_menu(){
	temp = ((document.body.clientWidth - 775) / 2) + 120;
	$('#menu').css("left",temp);
}
