
$(document).ready(function(){
    
    if ($('div#flashyimage a img').length) {
		$('div#fiSpace').css("cursor", "pointer");
		$('div#fiSpace').click(function() {
			window.location.href = $('div#flashyimage a').attr('href');
		});
	}
	
    $('img.categoryIcon').mouseover(function() {
        $('span#catBlurb').html($('input#category_'+$(this).attr('id')).val());
        $(this).addClass('mohighlight');
    }).mouseout(function() { $(this).removeClass('mohighlight');});

});
