var hovered=false;function initCosCoverflow(startId)
{var instanceOne=new ImageFlow();var boxes=$('#myImageFlow_hover').children();if($.browser.msie&&$.browser.version.substr(0,1)<7){$('#myImageFlow img').each(function(img){$(img).css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+img.src+"',sizingMethod='scale');");});}
boxes.hover(function(){var ele=$(this);ele.stop();ele.show();},function(){var ele=$(this);ele.stop();ele.hide();});instanceOne.init({ImageFlowID:'myImageFlow',buttons:true,captions:false,reflections:false,reflectionPNG:false,slider:true,startAnimation:true,reflectionP:0.2,startID:startId,imageCursor:'pointer',xStep:118,reflectionGET:'&height=20%&.png',imagesM:1.04,aspectRatio:2.00,imagesHeight:0.55,imageFocusM:1.0,onHover:function(imageFlow,imageID){var imageEle=$(imageFlow.imagesDiv.childNodes[imageID]);imageEle.siblings().unbind('mouseenter mouseleave');imageEle.hover(function()
{hoverThis(imageID,boxes);},function()
{unHoverThis(imageID,boxes);});}});}
function hoverThis(imageID,boxes)
{boxes.stop();boxes.hide();boxes.eq(imageID).show();hovered=true;var height=boxes.eq(imageID).height()*-1;boxes.eq(imageID).css({top:height+'px',zIndex:'999999'});}
function unHoverThis(imageID,boxes)
{boxes.stop();boxes.eq(imageID).fadeTo(300,100).fadeOut(0,function(){hovered=false;});}