/*CUANDO EL DOM ESTÉ PREPARADO SE EJECUTARÁ ESTA FUNCIÓN:*/
$(document).ready(function(){

	//COMPATIBILIDAD CON IE6
	if (($.browser.msie)&&($.browser.version <= 6)){
		//$('.sello').css({background: "url('css/img/sello_novedad.gif') no-repeat top left"});
		$('#titulo-ordena').css({height:'22px'});
		$('#booksearch .button4').css({width:'150px'});
		$('#booksearch select').css({width:'180px'});
		$('#recomanar #dades').css({fontSize:'90%'});
		$('#recomanar h2').css({fontSize:'160%'});
		$('#recomanar textarea').css({width:'200px'});
		$('#recomanar #enviar_solicitut').css({width:'60px'});
		$('#content  #center #noticies .noticia .autor, #content #center #info-noticia .autor').css({top:'5px'});
	}else{
		//$('.sello').css({background: "url('css/img/sello_novedad.png') no-repeat top left"});
	}
	
	$('#header, #header div, #header span').css({zIndex:'1'});
	$('#login-box').css({zIndex:'100'});
	$('#login').css({zIndex:'100'});
	$('input[type="text"].textbox, textarea.textbox').each(function(){
		if($(this).attr('maxlength')=='') $(this).attr({maxLength:'200'});
	})
	$('input[type="password"].textbox').attr({maxLength:'16'});
	$('#content #right #obres-relacionades .obra:last, #content #left #noticies-relacionades .noticia:last').css({background:'#fff'});

});
function showLogin(){
	$('#login-box').blind({size:'210px', opacity:1, duration:400});
}
