$(document).ready(function(){

	$('#user').autofill({
		value: 'Username',
		defaultTextColor: '#95988e'
	});

	$('#pass').autofill({
		value: 'Password',
		defaultTextColor: '#95988e'
	});

	$('#id_search').autofill({
		value: 'Search',
		defaultTextColor: '#000000'
	});

});

$(document).ready(function() 
{ 

	$(".buildings tr.row").hover(function() {
		$(this).css({'background-color' : '#ff9b00'}); },
	function() {
		$(this).css({'background-color' : '#fff'});
	}); 

});

$(function () {
	$('input#id_search').quicksearch('table.buildings tbody tr.row');
});
