$(document).ready (function () {
	if (aux == '') {
		swfobject.embedSWF("/gfx/herbes.swf", "mainflash", "490", "240", "9.0.0", "/gfx/expressInstall.swf", {}, {"wmode": "transparent"}, {});
	}

	$('.choosepet').each (function () {
		if ($(this).attr ('id') != cur) {
			$(this).fadeTo(150, 0.5);
			
			$(this).mouseenter(function() {
				$(this).fadeTo(150, 1);
			});
			
			$(this).mouseleave(function() {
				$(this).fadeTo(150, 0.5);
			});
		}		
	});
	
	$('a[rel=lightbox]').lightBox();
});
