/*

Cal el jquery abans que aquest !!!!!!

*/

$(document).ready(
			function()
			{
				if(seleccio != '' )
				{
					$("#select_ordre_publicacions").attr({'value':seleccio});
				}
				
				//-------------------------------------------------------------------------------------------------------
				$("#select_ordre_publicacions").change(
								function()
								{
									var val = $(this).attr('value');
// 									alert(val);
									document.location = document.location.href.split("?",1) + '?t=' + val;
								}
							);
				//-------------------------------------------------------------------------------------------------------
				
				if(seleccio_any != '' )
				{
					$("#select_any").attr({'value':seleccio_any});
				}
				
				//-------------------------------------------------------------------------------------------------------
				$("#select_any").change(
								function()
								{
									var val = $(this).attr('value');
// 									alert(val);
									document.location = document.location.href.split("?",1) + '?a=' + val;
								}
							);

			}
		);
