Problem in jquery image zoom effect

Problem in jquery image zoom effect

Hello Freinds,

    Here is the link when i download the demo of the image zoom effect http://www.visual-blast.com/source/jqzoom/jqzoom_v1.2.rar

I apply this in my page but my image size is large and in zoom efeect size is small when i change zoom effect in below changes result not get only zoom 100 got result i want large zoom effect how can i do this

<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
$("img.jqzoom").jqueryzoom({
                xzoom: 150, //zooming div default width(default width value is 200)
                yzoom: 150, //zooming div default width(default height value is 200)
                offset: 10 //zooming div default offset(default offset value is 10)
                //position: "right" //zooming div position(default position value is "right")
            });
});
</script>