define([],function()
{
return{
watch : function()
{/*
var $content = $('#content');
var $sidebar = $('#sidebar');
$sidebar.height('auto');
$content.height('auto');
var highestHeight = $sidebar.height();
if ($content.height() > highestHeight) highestHeight = $content.height();
$sidebar.height(highestHeight);
$content.height(highestHeight);*/
}
}
}
);