$(".col").bind("mouseover",function() { $(this).addClass("hover"); }).bind("mouseout",function() { $(this).removeClass("hover"); });

$(".col .nav a, .header .nav a").bind("mouseover",function()
{
	var $obj = $(this);
	$obj.text("\u2022" + $obj.text() + "\u2022");
})
.bind("mouseout",function()
{
	var $obj = $(this);
	$obj.text($obj.text().substr(1,$obj.text().length-2));
});


function jumpTo(event,url)
{
	if (event.target.nodeName.toLowerCase() != 'a') window.location.href = url;
}
