$(document).ready(function(){
//new window
$('a[href^="http://"], a.new_window')
  .attr({
    target: "_blank"
  })



//animace perex HP
		$('body.hp div .novinky_box ul li, body.hp div .kategorie_box ul li').perex_animace({
			object_nadpis: 'div.nadpis',
			object_napoveda: 'p.popisek_item'
		}); 
                //obrazek
		$('ul.vypis_obrazku li').perex_animace({
			object_nadpis: 'div.nadpis'
		}); 
		//prehled aka sekce       
		$('ul.vypis_stranek li').perex_animace({
			object_nadpis: 'div.nadpis',
			object_napoveda: 'p.popisek_item'
		});           

        
     //naseptavac 
     $('form#form_vyhledavani').naseptavac(); 
     $('form#form_vyhledavan_menu').naseptavac(); 

    //graphic title, similar photos, inserted link
    
	$('.photos_selection_box a img, span.inserted_link a, .podobne_galerie a img').bublinaHref({
		                master: '#content'
	});


    
    
    
/*
    $('span.inserted_link a').popisovac();
    $('.podobne_galerie a img').popisovac(); 
*/

	//TODO 
	 /*
        $('.podobne_galerie a img').mouseenter(function(e){
        	var bubble_text = $(this).attr('title');
		//alert(bubble_text);   
		$('.podobne_galerie a img').bublina({
		        master: '.podobne_galerie a img',
			buble_content: bubble_text
		});		   	
        });
        */
	/*
	$('.podobne_galerie a img').bublina({
	        master: '.podobne_galerie a img',
		buble_content: $(this).attr('title')
	});
	*/

 
	//navigace ve fotkach dalsi / predchazejici        
	$(document).keyup(function(event){
	    //alert(event.keyCode);
	    if (event.keyCode == 39) {
	        var dalsi_polozka =  $("link[rel='dalsi']").attr("href") ;
	        if(dalsi_polozka.length > 0){
			window.location.href = dalsi_polozka;
		}
	   } else if (event.keyCode == 37) {
	        var predchazejici_polozka =  $("link[rel='predchazejici']").attr("href") ;
	        if(predchazejici_polozka.length > 0){
			window.location.href = predchazejici_polozka;
		}	   
	   } else if (event.keyCode == 38000) {
	        var galerie =  $("link[rel='galerie']").attr("href") ;
	        if(galerie.length > 0){
		//	window.location.href = galerie;
		}	   
	   }else if (event.keyCode == 45) {
		//po printscreenu
	        window.location.href = '/service/block_galerie_obrazek.php?callback_uri=' + location.href;
	   }
	});    
});


