// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function rollover(ID, status)
{
	if(status == "over")
		document.getElementById(ID).style.backgroundColor = '#717e98';
	else
		document.getElementById(ID).style.backgroundColor = 'transparent';
}

/*
function popup()
jQuery.ajax({
    success:function(request){
    jQuery('#messages_list').html(request);
  }, 
  type:'get', url:'/?within=20'});
 return false;
*/