
window.addEvent('domready',function(){

	var bookInfo = $$('ul#stdvBooksList li');

	for (i=0;i<bookInfo.length;i++) {
		var currentDiv = bookInfo[i];
		var theDesc = currentDiv.getChildren("div.desc")[0];
		if(Browser.ie7){
			theDesc.setStyle('left',110+243*i);
		}
		theDesc.fade('hide').set('tween',{duration:100});
		currentDiv.addEvents({
			'mouseover': function(){
				var theDesc = this.getChildren("div.desc")[0];
				theDesc.fade('in');
			},
			'mouseout': function(){
				this.getChildren("div.desc")[0].fade('out');
			}
		});
		
	}

});


Cufon.replace('#stdvSite h1',{hover:true});

