$(document).ready(function()
{
	$("#loading").fadeOut();
	$(".navigframe").colorbox({width:"605", height:"415", iframe:true});
	$(".navigframe_button").colorbox({width:"605", height:"415", iframe:true, href: function (){
		var url="navigacia_vyber_metody_sk.php?buttonid="+$(this).attr("id");
		return url;
	}});
	$(".naviginline").colorbox({width:"755", height:"515", inline:true, href:"#inline_content"});
	$("a[rel=colorbox]").colorbox();
	$(".tableline_box").live ('click', function () {
		$.fn.colorbox({width:"810", height:"85%", iframe:true, href:(this).href});
		return false;
	});
	
    $("#loading").bind("ajaxSend", function()
    {
        $(this).show();
    }).bind("ajaxComplete", function(){
        $(this).hide();
    });

    $(".rolloverEffectTable tbody tr").live ('mouseover', function ()
   	{
    	$(this).addClass("tableRollOverEffect");
    });
    
    $(".rolloverEffectTable tbody tr").live ('mouseout', function ()
    		{
    	$(this).removeClass("tableRollOverEffect");
    		});
    
    $(".rolloverEffectTable tbody tr").live ('click', function ()
    {
        $(this).toggleClass("tableRowClickEffect");
     });
    
    $(".cboxclose").click(function(){ 
  	  parent.$.fn.colorbox.close();
  	  return false; 
    }); 	    
    	    
});

