jQuery.noConflict();
jQuery(function ($){

	//$("ul#index-links li:first-child").find("p").show();
	$("ul#index-links li h2 a").toggle(
	function(event){
   event.preventDefault(); // nezobrazí # v URL
   $(this).addClass("selected").parent().parent().find("p").show();
  },
  function(event) {
    $(this).removeClass("selected").parent().parent().find("p").hide();
  });


	$("ul li#skvely_expand").hover(
	function(event){
   $(this).find("ul").slideDown(200);
  },
  function(event) {
   $(this).find("ul").slideUp(200);
  });
  
//  $('.foto a').imgPreview();
/* 
 $('div#fotogalerie a').imgPreview({
    containerID: 'imgPreviewWithStyles',
    imgCSS: {
        // Limit preview size:
        height: 400
    },
    // When container is shown:
    onShow: function(link){
        $('<span>' + $(link).attr("title") + '</span>').appendTo(this);
    },
    // When container hides: 
    onHide: function(link){
        $('span', this).remove();
    }
});
*/

});

/*
function hooover() {
     alert('!!!!!!!!!!!!!');
}

document.getElementById('linky').onMouseOver = hooover();
*/
