// JavaScript Document
//łśćłżź
var DebugQueryMode=false; //Show Alerts
//var IE=false;

/* ================================================================================== */
/* =============================== jquery.ready [START] ============================= */
/* ================================================================================== */
/* =============================== .slider [START] ================================== */
$JQ('.jhover').hover(
  function () {
	$JQ(this).animate({ opacity: 0.7 }, 200 );
  }, 
  function () {
	$JQ(this).animate({ opacity: 1 }, 200 );
  }
);


function jLightboxHover(){
	try{ 
		elements=$JQ('a');
		for(i=0;i<elements.length;i++){
			rels=$JQ(elements).eq(i).attr('rel');
			rels=rels.toString();
			if(rels.slice(0,8)=='lightbox'){
					//alert('test:'+i);
					
				$JQ(elements).eq(i).hover(
				  function () {
					$JQ(this).animate({ opacity: 0.85 }, 200 );
				  }, 
				  function () {
					$JQ(this).animate({ opacity: 1 }, 200 );
				  }
				);
			}
		}
	}catch(err){ if(DebugQueryMode==true){ alert('jLightboxHover: ' +err); } }
}

/* =============================== .slider [END] ==================================== */
/* ================================================================================== */
/* =============================== jquery.ready [END] =============================== */
/* ================================================================================== */
