/**************************************** SCROLLING ***********************************************************/
function imscrolling(iddown, idup, ideltscroll){
		
	jQuery(iddown).hover(function(){
		var cont_h = jQuery(ideltscroll + " > div").height()
		var time = (cont_h-jQuery(ideltscroll).scrollTop()) * 10;
		jQuery(ideltscroll).animate({scrollTop:cont_h}, time);

	},
		function(){jQuery(ideltscroll).stop();
	});

	jQuery(idup).hover(function(){
		var cont_h = jQuery(ideltscroll + " > div").height()
		var time = jQuery(ideltscroll).scrollTop() * 10;
		jQuery(ideltscroll).animate({scrollTop:0}, time);
	},
		function(){jQuery(ideltscroll).stop();
	});

}

