/*------------------------------------------------
/ Design for Webmaster.spb.ru
/ Date : 2011
------------------------------------------------*/

$(function(){ /* On Load */

	// popCancel - close popBlock 
	$('.popBlock .popCancel').click(function(){
		$(this).parent().parent().fadeOut('fast');
		$('.popupLayer').hide();
		return false;
	});
	
	// popBlock - eventInfo 
	$('.filterEvents .eventInfoOpen').click(function(){
		$('.eventInfo').fadeIn('fast');
		return false;
	});
	
	// popBlock filter - tick off area
	$('.filterArea div a').click(function(){
		$(this).parent().toggleClass('tickOff');
		return false;
	});
	
	// popHeader - open
	$('.userMenuOpen01 a').click(function(){
		$('.popHeader').fadeIn('fast');
		return false;
	});
	// popHeader - close
	$('.popHeader a').click(function(){
		$('.popHeader').fadeOut('fast');
		return false;
	});
	
	/* lines in table */
	$('.scheduleBlock').find('tr:odd').addClass('oddBG01');
	
	/* lines in table */
	$('.openHelperMemory').click(function(){
		$(this).parent().toggleClass('colorText03').next().children().slideToggle();
		return false;
	});
	
	
	
	
	
}); //  onLoad
