
$(function() {
  $("#kasia img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-hov."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-hov.").join("."));
  });
});

$(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($) {
	temp = ((document.body.clientWidth - 775) / 2) +46;
	$('#top_title').css("left",temp);
		
		$('#top_fla').crossSlide({
			sleep: 7,
			fade: 4
		}, [
			{ src: 'img/top01.jpg' },
			{ src: 'img/top02.jpg' },
			{ src: 'img/top03.jpg' },
			{ src: 'img/top04.jpg' },
			{ src: 'img/top05.jpg' },
			{ src: 'img/top06.jpg' }
		]);
});
