
$(document).ready(function() {
// **** externi odkazy ****
// text
//$('a:not(":has(img)")').filter(function() {
//    return this.hostname && this.hostname !== location.hostname;
//})
////.not(":has(img)")
//.addClass('external')
//.attr('target','_blank')
//.attr('title','Toto je externí odkaz');
//// obrázek
//$('a:has(img)').filter(function() {
//    return this.hostname && this.hostname !== location.hostname;
//})
//.attr('target', '_blank')
//.attr('title', 'Toto je externí odkaz');

// galerie - pohyb nahoru
//$('.divGal').mouseenter(function(){
//	  $(this).css("position", "relative");
//	  $(this).css("top", "0"); // Opera bug fix
//	  $(this).stop().animate({'top': '-6px'}); //, {duration: 'slow', easing: 'easeOutExpo'}
//}).mouseleave(function(){
//	  $(this).stop().animate({'top' : '0'}); //, {duration: 'slow', easing: 'easeOutExpo'}
//});


// **** top menu first / last ****
//$('#topmenu .menu li:first-child').filter(function() {
//    $(this).addClass("first");
//});
//$('#topmenu .menu li:last-child').filter(function() {
//    $(this).addClass("last");
//});


// **** bxSlider ****
$('.tickerItems').bxSlider({
    auto: true,
    autoControls: false,
    autoHover: true,
    pager: false,
    controls: false,
    randomStart: true
});
    

// fancybox - galerie
$("a.galFoto").fancybox({
    titlePosition: 'outside'
});

// fancybox - obrazkovy odkaz ve statickem textu
$("a.fancybox").fancybox({
    titlePosition: 'over'
});
});





