$(document).ready(function(){
	$('#currentCity').mouseenter(function(){
			document.getElementById("currentCity").style.color="#ec006f";
			document.getElementById("currentCity").style.borderBottomColor="#ec006f";
	}).mouseleave(function(){
			document.getElementById("currentCity").style.color="#ccc";
			document.getElementById("currentCity").style.borderBottomColor="#ccc";
});
});




function citygo(city, collection)
{
	if (city=="hot")
		top.location.href = 'http://graffitimuseum.org/collections/'+collection+'/hot/';			
	else if (city=="")
		top.location.href = '/collections/'+collection+'/';		
	else
		top.location.href = '/collections/'+collection+'/'+city+'/';
}

