JQ=$;

JQ(document).ready(function(){
	
	/*************************/
	// Lista ofert pracy
	/*************************/
	JQ(".tbl_job tr").hover(
	  function () {
		JQ(this).css('background','#efefef');
	  }, 
	  function () {
		JQ(this).css('background','#fff');
	  }
	);
		

	JQ("#form_cv").hide();

	JQ('.job_cv a').toggle(
		function() {
			JQ("#form_cv").show();
			JQ(this).text('ukryj formularz'); 
			return false;
		},
		function() {
			JQ("#form_cv").hide();
			JQ(this).text('pokaż formularz'); 
			return false;
		}	
	);


});

	
function OpenWindow(theURL,winName,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
	window.open(theURL,winName,settings);
}
