function OpenWindow(page, win_width, win_height) {

	window.open("index.php?page=" + page,"_blank","width="+win_width+", height="+win_height+",left=170, top=50, status=no, toolbar=no, location=no, directories=no, menubar=no, scrollbars=yes, resizable=yes");
	
}



$(document).ready(function(){
  
  // RECIPIENTS - ANIMATE BACKGROUND COLOR IF TABLE IS ACTIVE
  $('.ponuka-items').click(
    function()
    {    
    var showID = $(this).attr('id');
      $('.ponuka'+showID).toggle('slow');
  });
  
  /*
  $('.nazov-galerie').hover(
    function() {
      $(this).animate({
      marginLeft: "43px"
      }, 50)
    },
    function() {
      $(this).animate({
      marginLeft: "40px"
      }, 'fast')
    });
    */
    
  /*$(".admin-navigation").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});*/

  
  $('.nazov-galerie').click(
  function() {
    var galleryID = $(this).attr('id');
    $('.galeria'+galleryID).toggle('fast');
  });
  
  Shadowbox.init({	
    handleOversize: "resize",
    displayNav: true,
    handleUnsupported: "remove",
    autoplayMovies: false,
	slideshowDelay: 3
  });

  
});



$(document).ready(function(){
    
  $('a.photoOpen').click(
  function()
  {
  var urlBig = $(this).attr('href');
  alert(urlBig);
  });
  
  
  $(function() {
   
    // initialize scrollable
    $("div.scrollable").scrollable({
    size: 3,
    clickable: true
    });
   
  });
  
});



// THICKBOX
$(function(){

  $('.verifyInquiry').click(function(){
  var redirectUrl = $(this.parentNode).attr('href');
  tb_show('<img src="images/content/overenie_poziadavky.png" class="TB_imgTitle" />','TB_inline?height=90&amp;width=250&amp;inlineId=TBcontent');

  $('input#TBcancel').click(function(){
    tb_remove();
  });

  $('input#TBsubmit').click(function(){
    location.replace(redirectUrl);
  });
  
  return false;
  });
  
});
