/*function updateimg(num)
{
	var species = $('select[name=species'+num+']').val();
	var color = $('select[name=color'+num+']').val();
	
	$.post('http://customize.thedailyneopets.com/index.php/ajax/colordb/', { '23k423j4k23h4kj2h34kjh': 'yes', 'species': species, 'color': color },
		function(data)
		{
			if (data != 'noexist')
			{
				$('#petimg'+num+'').attr('src', 'http://pets.neopets.com/cp/'+data+'/1/2.png');
			}
			else
			{
				$('#petimg'+num+'').attr('src', 'http://customize.thedailyneopets.com/images/noexist.gif');
			}
		});
}*/

num = 2;

function comparepets()
{
	var open = Math.floor(num + 1);
	num = open;
	
	if (open <= 8)
	{
		$('#'+open).slideDown();
	}
	else
	{
		alert('A maximum of 8 pets can be compared.');
	}
}