jQuery(document).ready(function(){
			
    $.ajax({
        type: "POST",
        global: false,
        url: document.location.href,
        success: function(msg){
            jQuery('#modelescroll').load(document.location.href+" .scrollWrapper",function(){
			
                $("#modelramiel").show(1);
                $("#modelramiep").show(1);
			
                $("div#modelescroll").smoothDivScroll({
                    autoScroll: "always",
                    autoScrollDirection: "endlessloopright",
                    autoScrollStep: 2,
                    mouseDownSpeedBooster: 1,
                    autoScrollInterval: 25
                });
				
                $("div#modelescroll").bind("mouseover", function() {
                    $(this).smoothDivScroll("stopAutoScroll");
                }).bind("mouseout", function() {
                    $(this).smoothDivScroll("startAutoScroll");
                });
	
            });
        }
    });
	
	
});
