$(document).ready(function() {
	
    $('a.whattosell').click(function() {
		hideClouds();
		$('#whattosell').show();
		$(this).parent().addClass('active');
		return false;
	});

    $('a.whattoget').click(function() {
		hideClouds();
		$('#whattoget').show();
		$(this).parent().addClass('active');
		return false;
	});

    $('a.regform').click(function() {
		hideClouds();
		$('#regform').show();
		$(this).parent().addClass('active');
		return false;
	});

    $('.dialogclose a').click(function() {
		hideClouds();

		//$('#whattosell').hide();
		//$('.icons20').parent().removeClass('active');
		//return false;
	});
});


function hideClouds(){

	$('#whattosell,#whattoget,#regform').hide();
	$('li.active').removeClass('active');

	return false;

}
