$(document).ready(function(){
	$('#formBusquedas').live('submit',function(event){
		var searchx = $('#SearchSearchx').val();
		var searchby = $('#SearchSearchby').val();
		if(searchby){
			$.hAjax.setHash('paginacion|index/searchx:'+searchx+'/searchby:'+searchby+'/');
		}
		return false;
	});
	$('tr').live('mouseover mouseout', function(event) {
		if (event.type == 'mouseover') {
			$(this).addClass('fila_over')
		} else {
			$(this).removeClass('fila_over');
		}
	});

	$('button').live('mouseover mouseout', function(event) {
		if (event.type == 'mouseover') {
			$(this).addClass('bt_over')
		} else {
			$(this).removeClass('bt_over');
		}
	});

	$.ModalBox("#mensajes",{
		overlayAppearDuration:300,
		overlayFadeDuration:300,
		SlideDownDuration:800,
		SlideUpDuration:300,
		easing:"easeOutBounce"
	});
	modal=$.ModalBox;

	$.hAjax({selector:'a[rev^="#"]'});

});

