/* * c28v1.js * $Revision: 1.2 $ * * (c) 1992-2007 Cisco Systems, Inc. All rights reserved. * Terms and Conditions: http://cisco.com/en/US/swassets/sw293/sitewide_important_notices.html */ jQuery('.c28 #psa_autosuggest a').hover( function(){ jQuery(this).find('span').addClass('allv1-link') },function(){ jQuery(this).find('span').removeClass('allv1-link') } ); jQuery('.c28 #psa_autosuggest a').click(function () { jQuery('.as-showoptions').slideToggle('slow'); }); jQuery('.c28 #psa_autosuggest a').toggle( function () { jQuery(this).find('.show-text').css({'display':'block'}); jQuery(this).find('.hide-text').hide(); if(jQuery.browser.msie){ jQuery('.c28v3 div').animate({'height':'146px'},{duration: "fast"} ); } else { jQuery('.c28v3 div').animate({'minHeight':'146px'},{duration: "fast"} ); } }, function () { jQuery(this).find('.show-text').hide(); jQuery(this).find('.hide-text').show(); if(jQuery.browser.msie){ jQuery('.c28v3 div').animate({'height':'62px'},{duration: "fast"} ); } else { jQuery('.c28v3 div').animate({'minHeight':'60px'},{duration: "fast"} ); } } );