﻿function SearchDivSlider() {
    //$('td.tvlistings-description > div').filter('.tvlistings-description-details').hide();
    $('span.tvlistings-expand-contract').click(function() {
	    var $nextDiv = $(this).next();
	    $nextDiv.slideToggle('fast');
	    var $image=$(this).children('img');
	    $image.attr('src',function() {
		    this.src=(this.src.indexOf("listings_less.gif") != -1) ? "/images/search/listings_more.gif" : "/images/search/listings_less.gif";
	    });
    });
}
var IECheck;
function IEContentLoaded(w,f){
    // document has loaded (IE method 2) using behavior
    var load=false,d=w.document,s=d.createStyleSheet().owningElement;
    s.styleSheet.cssText='body{behavior:expression(IECheck(this));}';
    var fire=function(e){if(!load)
{load=true;f.call(d,e);setTimeout(function()
{s.parentNode.removeChild(s);},10);}};
    IECheck=function(n)
{try{d.documentElement.doScroll('left');n.runtimeStyle.behavior='none';}catch(e)
{return;}fire(null);};
}
/*
if($.browser.msie) {
  IEContentLoaded(window,function() {
   SearchDivSlider();
  })
} else {
  $(document).ready(function() {
    SearchDivSlider();
  })
}
*/
