jQuery.noConflict();

jQuery(document).ready(function(){
	initList();
});

function initList() {
    jQuery("#locations .location").hover(function(){
        jQuery(this).addClass("over");
    }
    ,function(){
        jQuery(this).removeClass("over");
    });

    jQuery("#locations .location").click(function(){
        window.location = jQuery(this).find("h3 a").attr("href");
    });
}