http://www.cheryldesign.com/category/portfolio/
On the above page, when you shrink the browser down below 475px wide, the tabs aren't clickable anymore. I've been looking at this for a week and can't figure out what's going on.
jQuery(document).ready(function()
{
jQuery("#access").accessibleDropDown();
});
jQuery.fn.accessibleDropDown = function ()
{
var el = jQuery(this);
/* Setup dropdown menus for IE 6 */
jQuery("li", el).mouseover(function() {
jQuery(this).addClass("hover");
}).mouseout(function() {
jQuery(this).removeClass("hover");
});
/* Make dropdown menus keyboard accessible */
jQuery("a", el).focus(function() {
jQuery(this).parents("li").addClass("hover");
}).blur(function() {
jQuery(this).parents("li").removeClass("hover");
});
}