$(document).ready(function(){
	$('.extraParam span a').click(function(){
		//alert('hello word');
		divCont = $(this).parent().parent();
		divCont.children('span').removeClass('active');
		$(this).parent().addClass('active');
		selectName = divCont.attr('id');
		
		startPos = $(this).attr('href').indexOf(':');
		
		
		
		$('input[name="option_select_hidden_'+selectName.substring(14)+'"]').attr('value', $(this).attr('href').substring( $(this).attr('href').indexOf(':')+1 ));
		
		selectIs = $('select[name="'+selectName+'"]');
		selectIs.children('option').removeAttr('selected');
		selectIs.children('option[value="'+$(this).attr('href').substring(1)+'"]').attr('selected','selected');
		return false;
	});
	
	$('#close').click(function(){
		$('#flyBox').css('display', 'none');
		return false;
	});
	
	$('#rememberEmail').click(function(){
		$('.centerForm').css('display', 'none');
		$('.rememberEmail').css('display', 'block');
		return false;
	});
	
	$('#weatherClick').click(function(){
		//alert('OK');
		$('#weather').toggle(
			function(){
				$(this).animate({opacity:1}, 200);
			}
				
		);
	});
	
});
