var $j = jQuery.noConflict();
$j(document).ready(addClickHandlers);

function addClickHandlers()
{
    $j("a.fake", this).click(function(e)
    {
        //e.preventDefault();
        //$j("#target").load(this.href, addClickHandlers);
    });
    $j("div.event", this).hover(function() 
    {
    	$j(this).addClass('hover');
    }, 
    function() 
    {
    	$j(this).removeClass('hover');
    });
    $j("a[rel*=facebox]").facebox(
    {
        opacity : 50,
    	loading_image : '../j/loading.gif',
        close_image   : '../j/closelabel.gif'
      }) 
}

