$(document).ready(function() {
$(function(){	
  $(".vsf-widget").imageScroller({
	  next:"btn1",
	  prev:"btn2",
	  frame:"vsf-scroller-clip",
	  width:100,
	  child:"li",
	  auto:false
  });
});
    $('.vsf-mainmenu li').hover(
    		function() { $('ul', this).show('fast'); }, // 'slow' - Display menu speed.
    		function() { $('ul', this).hide('fast'); });
    DD_belatedPNG.fix(".vsf-wrap");
    DD_belatedPNG.fix("span.limg");
    DD_belatedPNG.fix("span.rimg");
    DD_belatedPNG.fix(".vsf-helponline");
    
    $("ul.vsf-scroller-clip li").hover(function() {
    	$(this).css({'z-index' : '10'});
    	$(this).find('img').addClass("hover").stop()
    		.animate({
    			marginTop: '-25px', 
    			marginLeft: '-25px', 
    			top: '50%', 
    			left: '50%', 
    			width: '140px', 
    			height: '65px',
    			padding: '15px' 
    		}, 200);
    	
    	} , function() {
    	$(this).css({'z-index' : '0'});
    	$(this).find('img').removeClass("hover").stop()
    		.animate({
    			marginTop: '0', 
    			marginLeft: '0',
    			top: '0', 
    			left: '0', 
    			width: '120px', 
    			height: '50px', 
    			padding: '0px'
    		}, 400);
    });
});


