ParallaxScrollOffset* ParallaxScrollOffset::scrollWithNode(CCNode *node,
		CCPoint r, CCPoint p, CCPoint s, CCPoint v) {
	ParallaxScrollOffset *offset = ParallaxScrollOffset::create();
	return (ParallaxScrollOffset*) offset->initWithNode(node, r, p, s, v);
}
ParallaxScrollOffset* ParallaxScrollOffset::scrollWithNode(Node *node, Point r, Point p, Point s){
    ParallaxScrollOffset *offset = (ParallaxScrollOffset*) ParallaxScrollOffset::create();
    return (ParallaxScrollOffset*)offset->initWithNode(node,r,p,s);
}