$(document).ready( function(){
	if($('#IND').length){
		$('#IND DIV').prepend('<img class="ico ico-ind" width=5px heigth=5px src=fotos/logos/bln.png> ');
	}

	if($('#CON').length && $('#IND').length) {
		if($('#CON').height()<500) $('#CON').height(500);
		if($('#IND').height()<$('#CON').height())
			$('#IND').height( $('#CON').height()-10);
	}

	if($('#bienvenida').length)
		$('#bienvenida LI DIV:even').css('background','#f2f2f2');
});

